mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
23 lines
No EOL
784 B
TypeScript
23 lines
No EOL
784 B
TypeScript
'use client';
|
|
|
|
import { OrgProvider } from '@components/Contexts/OrgContext'
|
|
import ErrorUI from '@components/Objects/StyledElements/Error/Error'
|
|
import { useSearchParams } from 'next/navigation'
|
|
import React from 'react'
|
|
|
|
export default function AuthLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
// Use optional chaining with proper typing to fix build error
|
|
const searchParams = useSearchParams()
|
|
// Type-safe approach to getting optional params
|
|
const orgslug = searchParams ? searchParams.get('orgslug') : null
|
|
|
|
if (orgslug) {
|
|
return <OrgProvider orgslug={orgslug}>{children}</OrgProvider>
|
|
} else {
|
|
return <ErrorUI message='Organization not specified' submessage='Please access this page from an Organization' />
|
|
}
|
|
} |