
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
import { AuthGuard } from '@/components/auth-guard'
|
|
import { UserSettings } from '@/components/dashboard/user-settings'
|
|
import { useRoleGuard } from '@/hooks/useRoleGuard'
|
|
|
|
export default function WholesaleSettingsPage() {
|
|
useRoleGuard('WHOLESALE')
|
|
|
|
return (
|
|
<AuthGuard>
|
|
<UserSettings />
|
|
</AuthGuard>
|
|
)
|
|
} |