🐛 fix(phone): Update SMS expiration time field to use 'sms_expire_time' with default value of 300

This commit is contained in:
web@ppanel 2025-01-13 22:06:14 +07:00
parent 19619fdbe0
commit 18b07c750d

View File

@ -99,8 +99,8 @@ export default function Page() {
<EnhancedInput
type='number'
min={0}
value={data?.sms_expire ?? 60}
onValueBlur={(value) => updateConfig('sms_expire', value)}
value={data?.sms_expire_time ?? 300}
onValueBlur={(value) => updateConfig('sms_expire_time', value)}
suffix='S'
disabled={isFetching}
placeholder={t('placeholders.expireTime')}