From 76c5d54b509c77a9a9c1a09d1484dd289d10cc69 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Sun, 4 Feb 2024 20:22:31 -0800 Subject: [PATCH] Missing team context. --- src/app/(main)/settings/teams/[teamId]/page.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/(main)/settings/teams/[teamId]/page.tsx b/src/app/(main)/settings/teams/[teamId]/page.tsx index de53549f..ef37b536 100644 --- a/src/app/(main)/settings/teams/[teamId]/page.tsx +++ b/src/app/(main)/settings/teams/[teamId]/page.tsx @@ -1,5 +1,10 @@ import TeamSettings from './TeamSettings'; +import TeamProvider from 'app/(main)/teams/[teamId]/TeamProvider'; export default function ({ params: { teamId } }) { - return ; + return ( + + + + ); }