diff --git a/web/components/bets-list.tsx b/web/components/bets-list.tsx index 43e95a42..957351af 100644 --- a/web/components/bets-list.tsx +++ b/web/components/bets-list.tsx @@ -153,7 +153,10 @@ function MyContractBets(props: { contract: Contract; bets: Bet[] }) { /> -
+
diff --git a/web/components/header.tsx b/web/components/header.tsx index b3921000..57f021a7 100644 --- a/web/components/header.tsx +++ b/web/components/header.tsx @@ -97,7 +97,10 @@ function SignedOutHeaders(props: { themeClasses?: string }) { return ( <>
Sign in @@ -106,8 +109,12 @@ function SignedOutHeaders(props: { themeClasses?: string }) { ) } -export function Header(props: { darkBackground?: boolean; children?: any }) { - const { darkBackground, children } = props +export function Header(props: { + darkBackground?: boolean + className?: string + children?: any +}) { + const { darkBackground, className, children } = props const user = useUser() @@ -115,7 +122,10 @@ export function Header(props: { darkBackground?: boolean; children?: any }) { return (