🐛 fix(locales): Update expiration time description from minutes to seconds in multiple languages

This commit is contained in:
web@ppanel
2025-02-14 15:53:26 +07:00
parent 8a02310752
commit 5bac933fbc
27 changed files with 28 additions and 51 deletions
@@ -50,10 +50,10 @@ export function VerifyCode() {
<TableCell className='text-right'>
<EnhancedInput
type='number'
placeholder='5'
placeholder='300'
value={data?.verify_code_expire_time}
onValueBlur={(value) => updateConfig('verify_code_expire_time', Number(value))}
suffix={t('minute')}
suffix={t('second')}
/>
</TableCell>
</TableRow>