mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
feat(crypto wallets settings): add timestamp field
This commit is contained in:
@@ -132,6 +132,15 @@ const CryptoWalletsForm = ({ account }: { account: Account | undefined }) => {
|
||||
</span>
|
||||
<button onClick={() => copyMessageToSign(walletsArray[selectedWallet], selectedWallet)}>{hasCopied ? t('copied') : t('copy')}</button>
|
||||
</div>
|
||||
<div className={styles.walletField}>
|
||||
<span className={styles.walletFieldTitle}>{_.capitalize(t('timestamp'))}: </span>
|
||||
<input
|
||||
type='text'
|
||||
onChange={(e) => setWalletsArrayProperty(selectedWallet, 'timestamp', Number(e.target.value))}
|
||||
value={walletsArray[selectedWallet].timestamp || ''}
|
||||
placeholder='Timestamp'
|
||||
/>
|
||||
</div>
|
||||
<div className={styles.walletField}>
|
||||
<span className={styles.walletFieldTitle}>{_.capitalize(t('paste_signature'))}: </span>
|
||||
<input
|
||||
|
||||
Reference in New Issue
Block a user