Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Karkar1ch committed Oct 17, 2024
1 parent c71ea96 commit 1f4b720
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
8 changes: 0 additions & 8 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@ const nextConfig = {
experimental: {
missingSuspenseWithCSRBailout: false,
},
eslint: {
rules: {
'next/no-img-element': 'off',
},
},
experimental: {
buildCache: true,
},
images: {
remotePatterns: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/DataGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import React, { useState} from 'react'
import { IoIosArrowBack } from "react-icons/io"
import { IoIosArrowForward } from "react-icons/io"
import { Select } from './interface/admin/Select'
import Select from './interface/admin/Select'
import ChooseRows from './interface/admin/ChooseRows'


Expand Down
2 changes: 1 addition & 1 deletion src/hook/animation/useMenuAnimation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function useMenuAnimation(isOpen: boolean) {
delay: isOpen ? staggerMenuItems : 0,
}
);
}, [animate]);
}, [isOpen]);

return scope;
}
2 changes: 1 addition & 1 deletion src/hook/animation/useSelectPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function useSelectPage(isOpen: boolean) {
delay: isOpen ? staggerMenuItems : 0,
}
);
}, [animate]);
}, [isOpen]);

return scope;
}

0 comments on commit 1f4b720

Please sign in to comment.