diff --git a/pkg/interface/src/views/apps/profile/components/EditProfile.tsx b/pkg/interface/src/views/apps/profile/components/EditProfile.tsx index a8b774383..d59bd98a8 100644 --- a/pkg/interface/src/views/apps/profile/components/EditProfile.tsx +++ b/pkg/interface/src/views/apps/profile/components/EditProfile.tsx @@ -85,7 +85,7 @@ export function ProfileHeaderImageEdit(props: any): ReactElement { export function EditProfile(props: any): ReactElement { const { contact, ship, api } = props; - const isPublic = useContactState(state => state.isContactPublic); + const isPublic = useContactState((state) => state.isContactPublic); const [hideCover, setHideCover] = useState(false); const handleHideCover = (value) => { @@ -150,7 +150,7 @@ export function EditProfile(props: any): ReactElement {
- +