diff options
Diffstat (limited to 'src/pages/my/profile.js')
| -rw-r--r-- | src/pages/my/profile.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pages/my/profile.js b/src/pages/my/profile.js index d4b7fb6d..97891259 100644 --- a/src/pages/my/profile.js +++ b/src/pages/my/profile.js @@ -1,14 +1,14 @@ -import { useEffect, useState } from "react"; +import { useState } from "react"; import { toast } from "react-hot-toast"; -import AppBar from "../../components/AppBar"; -import Layout from "../../components/Layout"; -import WithAuth from "../../components/WithAuth"; -import apiOdoo from "../../helpers/apiOdoo"; +import AppBar from "@/components/layouts/AppBar"; +import Layout from "@/components/layouts/Layout"; +import WithAuth from "@/components/auth/WithAuth"; +import apiOdoo from "@/core/utils/apiOdoo"; import { useAuth, setAuth as setAuthCookie, getAuth -} from "../../helpers/auth"; +} from "@/core/utils/auth"; export default function MyProfile() { const [auth, setAuth] = useAuth(); |
