🐛 fix(payment): Disable webhook_secret field in PaymentForm component

This commit is contained in:
web@ppanel 2025-04-28 11:51:41 +00:00
parent 356ae5b777
commit d323af8bb6

View File

@ -371,6 +371,7 @@ export default function PaymentForm<T>({
? configValues[fieldKey]
: ''
}
disabled={fieldKey === 'webhook_secret'}
onValueChange={(value) => {
const newConfig = { ...configValues };
newConfig[fieldKey] = value;