fix(ci): satisfy lint after restart controls

This commit is contained in:
Peter Steinberger
2026-05-02 23:05:26 +01:00
parent 15dc7d3f57
commit 2a7d6f6f13
2 changed files with 25 additions and 10 deletions

View File

@@ -134,7 +134,7 @@ function resolveGatewayRestartIntentOptions(
return { force: true };
}
if (opts.wait !== undefined) {
return { waitMs: parseDurationMs(String(opts.wait)) };
return { waitMs: parseDurationMs(opts.wait) };
}
return undefined;
}