Skip to content

Commit 9643428

Browse files
committed
fix: eslint
1 parent b710436 commit 9643428

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/settings/Profile/PersonalDetails/PhoneNumberPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import INPUT_IDS from '@src/types/form/PersonalDetailsForm';
2323
import type {PrivatePersonalDetails} from '@src/types/onyx';
2424

2525
function PhoneNumberPage() {
26-
const [privatePersonalDetails] = useOnyx(ONYXKEYS.PRIVATE_PERSONAL_DETAILS);
27-
const [isLoadingApp = true] = useOnyx(ONYXKEYS.IS_LOADING_APP);
26+
const [privatePersonalDetails] = useOnyx(ONYXKEYS.PRIVATE_PERSONAL_DETAILS, {canBeMissing: true});
27+
const [isLoadingApp = true] = useOnyx(ONYXKEYS.IS_LOADING_APP, {canBeMissing: true});
2828
const styles = useThemeStyles();
2929
const {translate} = useLocalize();
3030
const {inputCallbackRef} = useAutoFocusInput();

0 commit comments

Comments
 (0)