diff --git a/front/src/components/items/item-grid.tsx b/front/src/components/items/item-grid.tsx
index 41037465..36eeed9f 100644
--- a/front/src/components/items/item-grid.tsx
+++ b/front/src/components/items/item-grid.tsx
@@ -84,7 +84,7 @@ export const ItemGrid = ({
availableCount={availableCount}
seenCount={seenCount}
/>
- {kind === "movie" && watchPercent && (
+ {kind === "movie" && !!watchPercent && (
- {label} - {count > 0 ? ` (${count})` : ""} -
+{count > 0 ? `${label} (${count})` : label}
); }; diff --git a/front/src/ui/navbar.tsx b/front/src/ui/navbar.tsx index f08b2d2d..658605c4 100644 --- a/front/src/ui/navbar.tsx +++ b/front/src/ui/navbar.tsx @@ -94,7 +94,6 @@ export const NavbarRight = () => { key={path} value={path === "/browse" ? q : undefined} onChangeText={(query) => { - console.log(query); if (path === "/browse") { setQuery(query ?? undefined); } diff --git a/front/src/ui/profile/index.tsx b/front/src/ui/profile/index.tsx index 877e01a4..e6241f32 100644 --- a/front/src/ui/profile/index.tsx +++ b/front/src/ui/profile/index.tsx @@ -151,7 +151,7 @@ const ProfileHeader = ({ }))} value={status} setValue={setStatus} - className="shrink self-start" + className="self-start" />