Skip to content

Commit

Permalink
chore: the store folder was created
Browse files Browse the repository at this point in the history
  • Loading branch information
Franqsanz committed Aug 22, 2024
1 parent d4d6589 commit 9fa1e3d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Categories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { BsTag } from 'react-icons/bs';

import { MyTag } from '@components/ui/MyTag';
import { useAllFilterOptions } from '@hooks/queries';
import { useCategoryStore } from '@contexts/categoryStore';
import { useCategoryStore } from '@store/useCategoryStore';

export default function Categories() {
const { data } = useAllFilterOptions();
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@assets/*": ["./assets/*"],
"@components/*": ["./components/*"],
"@contexts/*": ["./contexts/*"],
"@store/*": ["./store/*"],
"@hooks/*": ["./hooks/*"],
"@services/*": ["./services/*"],
"@pages/*": ["./pages/*"],
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export default defineConfig({
'@assets': path.resolve(__dirname, 'src/assets'),
'@components': path.resolve(__dirname, 'src/components'),
'@contexts': path.resolve(__dirname, 'src/contexts'),
'@store': path.resolve(__dirname, 'src/store'),
'@hooks': path.resolve(__dirname, 'src/hooks'),
'@services': path.resolve(__dirname, 'src/services'),
'@pages': path.resolve(__dirname, 'src/pages'),
Expand Down

0 comments on commit 9fa1e3d

Please sign in to comment.