Skip to content

Commit 4384bce

Browse files
authored
remove logout function (#108)
* remove logout function * fix errors in next
1 parent 645c394 commit 4384bce

8 files changed

Lines changed: 228 additions & 191 deletions

File tree

next/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ npm-debug.log*
2424
yarn-debug.log*
2525
yarn-error.log*
2626
.yarn*
27+
!.yarnrc.yml
2728

2829
# local env files
2930
.env*.local

next/.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

next/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"formik": "2.4.9",
3232
"framer-motion": "12.36.0",
3333
"lodash": "4.18.1",
34+
"lodash-es": "4.18.1",
3435
"next": "16.1.6",
3536
"prop-types": "15.8.1",
3637
"react": "19.2.4",
@@ -60,5 +61,5 @@
6061
"overrides": {
6162
"eslint": "10.1.0"
6263
},
63-
"packageManager": "yarn@4.13.0"
64+
"packageManager": "yarn@4.14.1"
6465
}

next/src/app/(component)/color/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// project imports
2-
import ComponentColor from 'views/components-overview/color';
2+
import ComponentColor from "views/components-overview/Color";
33

44
// ===============================|| COMPONENTS - COLOR ||=============================== //
55

next/src/app/(component)/shadows/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// project imports
2-
import ComponentShadow from 'views/components-overview/shadows';
2+
import ComponentShadow from "views/components-overview/Shadows";
33

44
// ============================|| COMPONENTS - SHADOW ||============================ //
55

next/src/app/(component)/typography/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// project imports
2-
import ComponentTypography from 'views/components-overview/typography';
2+
import ComponentTypography from "views/components-overview/Typography";
33

44
// ==============================|| COMPONENTS - TYPOGRAPHY ||============================== //
55

0 commit comments

Comments
 (0)