Skip to content

Commit 8b7c63a

Browse files
committed
Fixed: Building the standalone docker image fails on the typescript check
1 parent cc572d3 commit 8b7c63a

File tree

1 file changed

+3
-2
lines changed
  • src/management-system-v2/app/(dashboard)/[environmentId]/management

1 file changed

+3
-2
lines changed

src/management-system-v2/app/(dashboard)/[environmentId]/management/layout.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ import SettingsPage from '../settings/settings-page';
33

44
export default function Layout({
55
params,
6-
...children
6+
organizationSettings,
77
}: {
88
params: Promise<{ environmentId: string }>;
9+
organizationSettings: React.ReactNode;
910
}) {
1011
// TODO: check if the user has the rights to change the settings
1112

1213
return (
1314
<Content title="Management">
14-
<SettingsPage {...children} />
15+
<SettingsPage organizationSettings={organizationSettings} />
1516
</Content>
1617
);
1718
}

0 commit comments

Comments
 (0)