Skip to content

Commit 782d93a

Browse files
committed
Fix typo in GtagConfigParams
1 parent 790b08b commit 782d93a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/api-review/analytics.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ export function getAnalytics(app?: FirebaseApp): Analytics;
121121

122122
// @public
123123
export interface GtagConfigParams {
124-
'allow_google_signals?': boolean;
125124
// (undocumented)
126125
[key: string]: unknown;
127126
'allow_ad_personalization_signals'?: boolean;
127+
'allow_google_signals'?: boolean;
128128
'cookie_domain'?: string;
129129
'cookie_expires'?: number;
130130
'cookie_flags'?: string;

packages/analytics/src/public-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export interface GtagConfigParams {
7070
* If set to false, disables all advertising features with `gtag.js`.
7171
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/display-features | Disable advertising features }
7272
*/
73-
'allow_google_signals?': boolean;
73+
'allow_google_signals'?: boolean;
7474
/**
7575
* If set to false, disables all advertising personalization with `gtag.js`.
7676
* See {@link https://developers.google.com/analytics/devguides/collection/ga4/display-features | Disable advertising features }

0 commit comments

Comments
 (0)