changed all paths with authentication to auth

This commit was merged in pull request #3.
This commit is contained in:
2023-10-18 00:47:32 -07:00
parent bc5f8e8db5
commit c92644222e
6 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -450,7 +450,7 @@ export const SidebarData = [
},
{
title: "Authentication",
path: "/authentication/sign-in/",
path: "/auth/sign-in/",
icon: <LockIcon />,
iconClosed: <KeyboardArrowRightIcon />,
iconOpened: <KeyboardArrowDownIcon />,
@@ -458,23 +458,23 @@ export const SidebarData = [
subNav: [
{
title: "Sign Up",
path: "/authentication/sign-up/",
path: "/auth/sign-up/",
},
{
title: "Forgot Password",
path: "/authentication/forgot-password/",
path: "/auth/forgot-password/",
},
{
title: "Lock Screen",
path: "/authentication/lock-screen/",
path: "/auth/lock-screen/",
},
{
title: "Confirm Mail",
path: "/authentication/confirm-mail/",
path: "/auth/confirm-mail/",
},
{
title: "Logout",
path: "/authentication/logout/",
path: "/auth/logout/",
},
],
},