🐛 fix(payment): Refactor payment form placeholder and update localization files

This commit is contained in:
web@ppanel
2025-04-24 06:11:55 -04:00
parent 5ea64893e8
commit 4a4d364f17
28 changed files with 5 additions and 28 deletions
@@ -201,7 +201,7 @@ export default function PaymentForm<T>({
<FormLabel>{t('domain')}</FormLabel>
<FormControl>
<EnhancedInput
placeholder={t('domainPlaceholder', { example: 'http(s)://example.com' })}
placeholder='http(s)://example.com'
value={field.value}
onValueChange={(value) => form.setValue('domain', value as string)}
/>