Skip to content

Commit ebd2ff5

Browse files
formatting
1 parent 5b3bf86 commit ebd2ff5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

ts/src/header-validator/to-json.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,8 @@ export function serializeSource(
243243
s.aggregatableDebugReporting,
244244
(v) => serializeSourceAggregatableDebugReportingConfig(v)
245245
),
246-
...ifNotNull(
247-
'attribution_scopes',
248-
s.attributionScopes,
249-
(v) => serializeAttributionScopes(v)
246+
...ifNotNull('attribution_scopes', s.attributionScopes, (v) =>
247+
serializeAttributionScopes(v)
250248
),
251249
}
252250

ts/src/header-validator/validate-source.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,8 @@ function source(j: Json, ctx: Context): Maybe<Source> {
726726
),
727727
attributionScopes: field(
728728
'attribution_scopes',
729-
withDefault(attributionScopes, null)),
729+
withDefault(attributionScopes, null)
730+
),
730731

731732
...commonDebugFields,
732733
...priorityField,

0 commit comments

Comments
 (0)