mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 21:57:16 +01:00
Missing team context.
This commit is contained in:
parent
cac15b55ae
commit
76c5d54b50
1 changed files with 6 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue