Skip to content

Commit

Permalink
temp remove maskInputSelectors (use maskTextSelector)
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Jul 31, 2023
1 parent a256715 commit cf9c732
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/replay/src/util/getPrivacyOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ type GetPrivacyOptions = Required<Omit<ReplayIntegrationPrivacyOptions, 'maskFn'
interface GetPrivacyReturn {
maskTextSelector: string;
unmaskTextSelector: string;
maskInputSelector: string;
unmaskInputSelector: string;
// maskInputSelector: string;
// unmaskInputSelector: string;
blockSelector: string;
unblockSelector: string;
ignoreSelector: string;
Expand Down Expand Up @@ -78,8 +78,8 @@ export function getPrivacyOptions({
// We are making the decision to make text and input selectors the same
maskTextSelector: maskSelector,
unmaskTextSelector: unmaskSelector,
maskInputSelector: maskSelector,
unmaskInputSelector: unmaskSelector,
// maskInputSelector: maskSelector,
// unmaskInputSelector: unmaskSelector,

blockSelector: getOption(
block,
Expand Down

0 comments on commit cf9c732

Please sign in to comment.