From 786291ff4f72bcc2a078462da7ce728fb1d24a21 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sun, 26 Apr 2026 10:07:16 -0500 Subject: [PATCH] feat: integrate saved games grid into profile page --- app/profile/page.tsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/app/profile/page.tsx b/app/profile/page.tsx index acf49e6..b71bd5c 100644 --- a/app/profile/page.tsx +++ b/app/profile/page.tsx @@ -6,6 +6,7 @@ import { useSession } from "@/lib/auth-client" import { ProfileHeader } from "@/components/profile/profile-header" import { StatsRow } from "@/components/profile/stats-row" import { ContributionList } from "@/components/profile/contribution-list" +import { SavedGamesGrid } from "@/components/saved-games/saved-games-grid" import { Bookmark, Settings, Loader2 } from "lucide-react" import { motion } from "motion/react" import type { ContributionEntry } from "@/types/api" @@ -130,13 +131,7 @@ export default function ProfilePage() { )} - {activeTab === "saved" && ( -
- -

Saved games will appear here

-

Feature coming in the next update

-
- )} + {activeTab === "saved" && } {activeTab === "settings" && (