Updated icons.

This commit is contained in:
Mike Cao 2025-02-18 20:46:03 -08:00
parent b53606d497
commit 1c5ef97f84
11 changed files with 74 additions and 68 deletions

View file

@ -1,13 +1,13 @@
import { TeamProvider } from './TeamProvider';
import { Metadata } from 'next';
import TeamSettingsLayout from './settings/TeamSettingsLayout';
import { TeamSettingsLayout } from './settings/TeamSettingsLayout';
export default async function ({
children,
params,
}: {
children: any;
params: { teamId: string };
params: Promise<{ teamId: string }>;
}) {
const { teamId } = await params;