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