Skip to content

Commit

Permalink
fix(segment): fixes the config for optional parameters (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorkem authored May 16, 2023
1 parent 9f6ed93 commit 4857f5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/analytics-provider-segment/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ export interface Config {
* to false.
* @visibility frontend
*/
testMode: boolean;
testMode?: boolean;

/**
* Prevents IP address to be sent as when set to true. Defaults to false
* @visbility frontend
*/
maskIP: boolean;
maskIP?: boolean;
};
};
};
Expand Down

0 comments on commit 4857f5d

Please sign in to comment.