diff --git a/frontend/src/components/Page.tsx b/frontend/src/components/Page.tsx
index b4072500ab7eb50bdc4e4eadcc8cd3e2dfdf1d4b..43c1412ffc26aad0cbd1ccd2ed8139a988d79504 100644
--- a/frontend/src/components/Page.tsx
+++ b/frontend/src/components/Page.tsx
@@ -2,8 +2,9 @@ import { Drawer } from "./Drawer";
 import { Title } from "./Title";
 
 type Props = {
+  user?: string,
   title: string,
-  [children:string]: any
+  [children: string]: any
 };
 
 export const Page = (props: Props) => {