mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-07 15:18:08 -05:00
17 lines
514 B
TypeScript
17 lines
514 B
TypeScript
import UserSettings from '@app/components/UserProfile/UserSettings';
|
|
import UserGeneralSettings from '@app/components/UserProfile/UserSettings/UserGeneralSettings';
|
|
import useRouteGuard from '@app/hooks/useRouteGuard';
|
|
import { Permission } from '@app/hooks/useUser';
|
|
import type { NextPage } from 'next';
|
|
|
|
const UserSettingsPage: NextPage = () => {
|
|
useRouteGuard(Permission.MANAGE_USERS);
|
|
return (
|
|
<UserSettings>
|
|
<UserGeneralSettings />
|
|
</UserSettings>
|
|
);
|
|
};
|
|
|
|
export default UserSettingsPage;
|