Show kind in sign-event in activity history, show import key without advanced section

This commit is contained in:
artur
2024-02-14 11:39:37 +03:00
parent 1a9dc0da82
commit 0be2159efb
3 changed files with 10 additions and 7 deletions

View File

@@ -31,13 +31,14 @@ export const ModalInitial = () => {
<Stack paddingTop={'0.5rem'} gap={'1rem'}>
<Button onClick={() => handleOpen(MODAL_PARAMS_KEYS.SIGN_UP)}>Sign up</Button>
<Button onClick={() => handleOpen(MODAL_PARAMS_KEYS.LOGIN)}>Login</Button>
<AppLink title="Advanced" alignSelf={'center'} onClick={handleShowAdvanced} />
<Button onClick={() => handleOpen(MODAL_PARAMS_KEYS.IMPORT_KEYS)}>Import key</Button>
{/* <AppLink title="Advanced" alignSelf={'center'} onClick={handleShowAdvanced} />
{showAdvancedContent && (
<Fade in>
<Button onClick={() => handleOpen(MODAL_PARAMS_KEYS.IMPORT_KEYS)}>Import key</Button>
</Fade>
)}
)} */}
</Stack>
</Modal>
)