Fix space before question mark in delete prompt (#1995)
This commit is contained in:
parent
ada230597d
commit
271563efbd
@ -62,7 +62,11 @@ function DeleteWalletLogsObstacle ({ wallet, setLogs, onClose }) {
|
||||
const { deleteLogs } = useWalletLogManager(setLogs)
|
||||
const toaster = useToast()
|
||||
|
||||
const prompt = `Do you really want to delete all ${wallet ? '' : 'wallet'} logs ${wallet ? 'of this wallet' : ''}?`
|
||||
let prompt = 'Do you really want to delete all wallet logs?'
|
||||
if (wallet) {
|
||||
prompt = 'Do you really want to delete all logs of this wallet?'
|
||||
}
|
||||
|
||||
return (
|
||||
<div className='text-center'>
|
||||
{prompt}
|
||||
|
Loading…
x
Reference in New Issue
Block a user