diff --git a/web/src/app/_ui/masthead.tsx b/web/src/app/_ui/masthead.tsx index 6f5cea8..1456840 100644 --- a/web/src/app/_ui/masthead.tsx +++ b/web/src/app/_ui/masthead.tsx @@ -1,4 +1,5 @@ import { ThemeToggle } from "./theme-toggle"; +import { WorkerStatus } from "./worker-status"; export function Masthead() { return ( @@ -10,10 +11,7 @@ export function Masthead() {
A record label for an audience of one
-
- - Worker · listening -
+
diff --git a/web/src/app/_ui/pressed-list.tsx b/web/src/app/_ui/pressed-list.tsx index bea3e5e..148b6c4 100644 --- a/web/src/app/_ui/pressed-list.tsx +++ b/web/src/app/_ui/pressed-list.tsx @@ -1,11 +1,13 @@ -export type PressedItem = { id: string; artist: string; album: string; matrix: string }; +import { CoverArt } from "./cover-art"; + +export type PressedItem = { id: string; artist: string; album: string; matrix: string; rgMbid: string | null }; export function PressedList({ items }: { items: PressedItem[] }) { return (