add wallet sync export feature #7650

Open
jessopb wants to merge 2 commits from feat-walletExport into master
Showing only changes of commit 30c2dbdd10 - Show all commits

View file

@ -379,6 +379,20 @@ export default function SettingSystem(props: Props) {
<SettingsRow title={__('Share url')} multirow> <SettingsRow title={__('Share url')} multirow>
<SettingShareUrl /> <SettingShareUrl />
</SettingsRow> </SettingsRow>
<SettingsRow
title={__('Export Wallet')}
subtitle={__('Export encrypted sync data for import in another app.')}
>
<Button
button="primary"
className="expandable__button"
label={__('Export')}
aria-label={__('Export wallet')}
onClick={() => {
openModal(MODALS.WALLET_EXPORT, {});
}}
/>
</SettingsRow>
<SettingsRow <SettingsRow
title={__('Clear application cache')} title={__('Clear application cache')}
subtitle={__('This might fix issues that you are having. Your wallet will not be affected.')} subtitle={__('This might fix issues that you are having. Your wallet will not be affected.')}
@ -394,20 +408,6 @@ export default function SettingSystem(props: Props) {
disabled={clearingCache} disabled={clearingCache}
/> />
</SettingsRow> </SettingsRow>
<SettingsRow
title={__('Export Wallet')}
subtitle={__('Export encrypted sync data for import in another app.')}
>
<Button
button="primary"
className="expandable__button"
label={__('Export')}
aria-label={__('Export wallet')}
onClick={() => {
openModal(MODALS.WALLET_EXPORT, {});
}}
/>
</SettingsRow>
</> </>
} }
/> />