Skip to content

Commit

Permalink
fix: revert last change
Browse files Browse the repository at this point in the history
  • Loading branch information
mirovladimitrovski committed Jun 19, 2023
1 parent 8ec620c commit a6d1634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/inplayer.account.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const getPublisherConsents: GetPublisherConsents = async (config) => {
const { data } = await InPlayer.Account.getRegisterFields(jwp?.clientId || '');

const result = data?.collection
.filter((field) => !['email_confirmation', 'first_name', 'surname'].includes(field.name))
.filter((field) => !['email_confirmation'].includes(field.name))
.map(
(field): Consent => ({
type: field.type as ConsentFieldVariants,
Expand Down

0 comments on commit a6d1634

Please sign in to comment.