mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Missing team context.
This commit is contained in:
parent
cac15b55ae
commit
76c5d54b50
@ -1,5 +1,10 @@
|
||||
import TeamSettings from './TeamSettings';
|
||||
import TeamProvider from 'app/(main)/teams/[teamId]/TeamProvider';
|
||||
|
||||
export default function ({ params: { teamId } }) {
|
||||
return <TeamSettings teamId={teamId} />;
|
||||
return (
|
||||
<TeamProvider teamId={teamId}>
|
||||
<TeamSettings teamId={teamId} />
|
||||
</TeamProvider>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user