diff --git a/client/app/components/rewind/Rewind.tsx b/client/app/components/rewind/Rewind.tsx index 45b32db..21878c5 100644 --- a/client/app/components/rewind/Rewind.tsx +++ b/client/app/components/rewind/Rewind.tsx @@ -38,7 +38,7 @@ export default function Rewind(props: Props) { includeTime={props.includeTime} /> -
+
-
+
- +
diff --git a/client/app/routes/RewindPage.tsx b/client/app/routes/RewindPage.tsx index b3ef0da..5b4e518 100644 --- a/client/app/routes/RewindPage.tsx +++ b/client/app/routes/RewindPage.tsx @@ -12,5 +12,10 @@ export default function RewindPage() { useEffect(() => { getRewindStats({ year: 2025 }).then((r) => setStats(r)); }, []); - return <>{stats !== undefined && }; + return ( +
+

Your 2025 Rewind

+ {stats !== undefined && } +
+ ); }