refactor: absolute imports with path alias (#2960) [skip ci]
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import IssueDetails from '@app/components/IssueDetails';
|
||||
import useRouteGuard from '@app/hooks/useRouteGuard';
|
||||
import { Permission } from '@app/hooks/useUser';
|
||||
import type { NextPage } from 'next';
|
||||
import IssueDetails from '../../../components/IssueDetails';
|
||||
import useRouteGuard from '../../../hooks/useRouteGuard';
|
||||
import { Permission } from '../../../hooks/useUser';
|
||||
|
||||
const IssuePage: NextPage = () => {
|
||||
useRouteGuard(
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import IssueList from '@app/components/IssueList';
|
||||
import useRouteGuard from '@app/hooks/useRouteGuard';
|
||||
import { Permission } from '@app/hooks/useUser';
|
||||
import type { NextPage } from 'next';
|
||||
import IssueList from '../../components/IssueList';
|
||||
import useRouteGuard from '../../hooks/useRouteGuard';
|
||||
import { Permission } from '../../hooks/useUser';
|
||||
|
||||
const IssuePage: NextPage = () => {
|
||||
useRouteGuard(
|
||||
|
||||
Reference in New Issue
Block a user