"use client"; import { observer } from "mobx-react"; import { useTranslation } from "@plane/i18n"; // components import { LogoSpinner } from "@/components/common"; import { PageHead } from "@/components/core"; import { ProfileSettingContentWrapper, ProfileForm } from "@/components/profile"; // hooks import { useUser } from "@/hooks/store"; const ProfileSettingsPage = observer(() => { const { t } = useTranslation(); // store hooks const { data: currentUser, userProfile } = useUser(); if (!currentUser) return (