Skip to content

Commit fce58bc

Browse files
committed
style: fix prettier formatting in ajvProvider.ts
1 parent 9e99668 commit fce58bc

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/core-internal/src/validators/ajvProvider.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@ function createDefaultAjvInstance(engineClass: typeof Ajv2020 | typeof Ajv2019 |
4545
// Register Google Cloud duration format to silence "unknown format" warnings
4646
// from MCP servers that use Google API schemas (e.g. Firebase MCP).
4747
if ('addFormat' in ajv && typeof ajv.addFormat === 'function') {
48-
(ajv as { addFormat: (name: string, format: unknown) => void }).addFormat(
49-
'google-duration',
50-
GOOGLE_DURATION_RE
51-
);
48+
(ajv as { addFormat: (name: string, format: unknown) => void }).addFormat('google-duration', GOOGLE_DURATION_RE);
5249
}
5350
return ajv;
5451
}

0 commit comments

Comments
 (0)