mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-10 16:47:54 -05:00
refactor: absolute imports with path alias (#2960) [skip ci]
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
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';
|
||||
import UserSettings from '../../../../components/UserProfile/UserSettings';
|
||||
import UserGeneralSettings from '../../../../components/UserProfile/UserSettings/UserGeneralSettings';
|
||||
import useRouteGuard from '../../../../hooks/useRouteGuard';
|
||||
import { Permission } from '../../../../hooks/useUser';
|
||||
|
||||
const UserSettingsPage: NextPage = () => {
|
||||
useRouteGuard(Permission.MANAGE_USERS);
|
||||
|
||||
Reference in New Issue
Block a user