Desc:
- Perubahan minor
This commit is contained in:
2023-10-05 11:28:54 +08:00
parent 1b62602e22
commit ab9fb81b38
10 changed files with 12 additions and 12 deletions

View File

@@ -34,7 +34,7 @@ import { getProfile } from "../katalog/profile";
import { useRouter } from "next/navigation";
import { useAtom } from "jotai";
import { gs_token } from "./state/global_state";
import { g_getProfile } from "../katalog/profile/fun/fun_get_profile";
import { loadDataProfile } from "../katalog/profile/fun/fun_get_profile";
import { gs_profile } from "../katalog/profile/state/global_state";
const listHalaman = [
@@ -95,7 +95,7 @@ export default function HomeView() {
const [profile, setProfile] = useAtom(gs_profile);
useShallowEffect(() => {
g_getProfile(setProfile);
loadDataProfile(setProfile);
}, []);
return (