Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
JRomainG committed Dec 26, 2023
1 parent dcd2c0a commit 7fd0afe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import { getQueue, getCurrentPlayback } from "@/utils/queue";
import * as Spotify from "spotify-api.js";
import styles from "./page.module.css";
import { redirect } from "next/navigation";
import TitleBar from "./titlebar";
import TrackCover from "./track_cover";
import TrackList from "./track_list";

interface Props {
queue: any;
currentPlayback: any;
queue: Spotify.Track[];
currentPlayback: Spotify.CurrentPlayback | null;
}

export function Body({ queue, currentPlayback }: Props) {
Expand Down
2 changes: 1 addition & 1 deletion src/app/titlebar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
margin: 2% 5% 5% 5%;
border-width: 1px;
border-color: black;
padding: 10px;
padding: 20px;
border-radius: 20px;
}

Expand Down

0 comments on commit 7fd0afe

Please sign in to comment.