[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

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,
});