[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-04-05 05:06:42 +00:00 committed by GitHub
parent 182bbf43c8
commit 6e9c5c79dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,9 +76,7 @@ export const StopGracePeriodForm = ({ id, type }: StopGracePeriodFormProps) => {
if (hasStopGracePeriodSwarm(data)) {
const value = data.stopGracePeriodSwarm;
const normalizedValue =
value === null || value === undefined
? null
: Number(value);
value === null || value === undefined ? null : Number(value);
form.reset({
value: normalizedValue,
});