Skip to content

Commit

Permalink
chore: update eslint import sort rule
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshift committed May 15, 2024
1 parent b118628 commit 6b08521
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"^@/shared/core",
"^@/shared/utils",
"^@/shared/atoms",
"^@/shared/api",
"^@/shared/data",
"^@/shared/hooks",
"^@/shared/components",
"^@/shared/providers"
Expand All @@ -43,7 +43,7 @@
"^(@)(/.*/core|$)",
"^(@)(/.*/utils|$)",
"^(@)(/.*/atoms|$)",
"^(@)(/.*/api|$)",
"^(@)(/.*/data|$)",
"^(@)(/.*/hooks|$)",
"^(@)(/.*/components|$)",
"^(@)(/.*/providers|$)"
Expand Down
3 changes: 1 addition & 2 deletions src/orgs/components/org-list/use-org-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ import { getQueryClient } from '@/shared/utils/get-query-client';
import { orgQueryKeys } from '@/orgs/core/query-keys';
import { initOrgAtom, orgTotalCountAtom } from '@/orgs/core/atoms';
import { initPathAtom } from '@/shared/core/atoms';
import { getOrgDetails } from '@/orgs/data/get-org-details';

import { useOrgListQuery } from './use-org-list-query';

import { getOrgDetails } from '@/orgs/data/get-org-details';

export const useOrgList = () => {
const queryClient = getQueryClient();

Expand Down

0 comments on commit 6b08521

Please sign in to comment.