@@ -80,7 +80,7 @@ function InitialSettingsPage({currentUserPersonalDetails}: InitialSettingsPagePr
80
80
const [ walletTerms ] = useOnyx ( ONYXKEYS . WALLET_TERMS ) ;
81
81
const [ loginList ] = useOnyx ( ONYXKEYS . LOGIN_LIST ) ;
82
82
const [ policies ] = useOnyx ( ONYXKEYS . COLLECTION . POLICY ) ;
83
- const [ privatePersoanlDetails ] = useOnyx ( ONYXKEYS . PRIVATE_PERSONAL_DETAILS ) ;
83
+ const [ privatePersonalDetails ] = useOnyx ( ONYXKEYS . PRIVATE_PERSONAL_DETAILS ) ;
84
84
85
85
const network = useNetwork ( ) ;
86
86
const theme = useTheme ( ) ;
@@ -127,7 +127,7 @@ function InitialSettingsPage({currentUserPersonalDetails}: InitialSettingsPagePr
127
127
* @returns object with translationKey, style and items for the account section
128
128
*/
129
129
const accountMenuItemsData : Menu = useMemo ( ( ) => {
130
- const profileBrickRoadIndicator = UserUtils . getProfilePageBrickRoadIndicator ( loginList , privatePersoanlDetails ) ;
130
+ const profileBrickRoadIndicator = UserUtils . getProfilePageBrickRoadIndicator ( loginList , privatePersonalDetails ) ;
131
131
const paymentCardList = fundList ;
132
132
const defaultMenu : Menu = {
133
133
sectionStyle : styles . accountSettingsSectionContainer ,
@@ -162,7 +162,7 @@ function InitialSettingsPage({currentUserPersonalDetails}: InitialSettingsPagePr
162
162
} ;
163
163
164
164
return defaultMenu ;
165
- } , [ loginList , fundList , styles . accountSettingsSectionContainer , bankAccountList , userWallet ?. errors , walletTerms ?. errors , privatePersoanlDetails ] ) ;
165
+ } , [ loginList , fundList , styles . accountSettingsSectionContainer , bankAccountList , userWallet ?. errors , walletTerms ?. errors , privatePersonalDetails ] ) ;
166
166
167
167
/**
168
168
* Retuns a list of menu items data for workspace section
0 commit comments