We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c30646 commit bd402cdCopy full SHA for bd402cd
apps/sim/app/invite/components/index.ts
@@ -1,2 +1,2 @@
1
-export { InviteLayout } from './layout'
+export { default as InviteLayout } from './layout'
2
export { InviteStatusCard } from './status-card'
apps/sim/app/invite/components/layout.tsx
@@ -17,7 +17,7 @@ function isColorDark(hexColor: string): boolean {
17
return luminance < 0.5
18
}
19
20
-export function InviteLayout({ children }: InviteLayoutProps) {
+export default function InviteLayout({ children }: InviteLayoutProps) {
21
useEffect(() => {
22
const rootStyle = getComputedStyle(document.documentElement)
23
const brandBackground = rootStyle.getPropertyValue('--brand-background-hex').trim()
0 commit comments