// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import { SETTINGS_GRP } from 'constants/settings'; import React from 'react'; import Button from 'component/button'; import Card from 'component/common/card'; import SettingsRow from 'component/settingsRow'; import SyncToggle from 'component/syncToggle'; import { getPasswordFromCookie } from 'util/saved-passwords'; import { getStripeEnvironment } from 'util/stripe'; type Props = { // --- select --- isAuthenticated: boolean, walletEncrypted: boolean, user: User, // --- perform --- doWalletStatus: () => void, }; export default function SettingAccount(props: Props) { const { isAuthenticated, walletEncrypted, user, doWalletStatus } = props; const [storedPassword, setStoredPassword] = React.useState(false); // Determine if password is stored. React.useEffect(() => { if (isAuthenticated || !IS_WEB) { doWalletStatus(); getPasswordFromCookie().then((p) => { if (typeof p === 'string') { setStoredPassword(true); } }); } }, []); // eslint-disable-line react-hooks/exhaustive-deps return ( <>

{__('Account')}

{isAuthenticated && (