Skip to content

Commit

Permalink
feat: correct imports when renaming playlists path
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <git@mattglei.ch>
  • Loading branch information
gleich committed Jan 4, 2025
1 parent 4a817f6 commit 95ddb99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/playlists/[id]/lastUpdated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { exactFromNow } from '@/lib/time';
import dayjs from 'dayjs';
import { useEffect, useState } from 'react';
import styles from '@/app/music-playlist/[id]/lastUpdated.module.css';
import styles from './lastUpdated.module.css';

export default function LastUpdated({ lastUpdated }: { lastUpdated: Date }) {
const dayjsLastUpdate = dayjs(lastUpdated);
Expand Down
2 changes: 1 addition & 1 deletion src/app/playlists/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import NotFound from '@/app/not-found';
import { loadAppleMusicPlaylist } from '@/lib/lcp/applemusic';
import styles from '@/app/music-playlist/[id]/page.module.css';
import styles from '@/app/playlists/[id]/page.module.css';
import Nav from '@/ui/root/nav';
import Song from '@/ui/root/music/song';
import Copyright from '@/ui/root/copyright';
Expand Down

0 comments on commit 95ddb99

Please # to comment.