From 2430a29eadeda7b8f97c97b692375e572564d215 Mon Sep 17 00:00:00 2001 From: alantoa Date: Tue, 31 Oct 2023 18:33:38 +0800 Subject: [PATCH] fix import --- packages/app/components/profile/complete-profile-button.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/app/components/profile/complete-profile-button.tsx b/packages/app/components/profile/complete-profile-button.tsx index 57c8d67b3..59c978e97 100644 --- a/packages/app/components/profile/complete-profile-button.tsx +++ b/packages/app/components/profile/complete-profile-button.tsx @@ -3,10 +3,9 @@ import { Platform } from "react-native"; import { Button, GradientButton } from "@showtime-xyz/universal.button"; import { useRouter } from "@showtime-xyz/universal.router"; +import { useOnboardingPromise } from "app/components/onboarding"; import { useUser } from "app/hooks/use-user"; -import { useOnboardingPromise } from "../onboarding"; - export const CompleteProfileButton = ({ isSelf }: { isSelf: boolean }) => { const router = useRouter(); const { isIncompletedProfile } = useUser();