Skip to content

Commit dcc62b7

Browse files
CCM-12495: Fix typecheck
1 parent bf35c0e commit dcc62b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test-team/helpers/auth/cognito-auth-helper.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export class CognitoAuthHelper {
266266
const clientConfig: ClientConfiguration | undefined =
267267
testClients[userDetails.clientKey];
268268

269-
const { name: clientName, campaignId, campaignIds } = clientConfig ?? {};
269+
const { name: clientName, campaignIds } = clientConfig ?? {};
270270

271271
const clientAttributes = [
272272
{ Name: 'custom:sbx_client_id', Value: clientId },
@@ -326,7 +326,6 @@ export class CognitoAuthHelper {
326326
{
327327
email,
328328
userId: sub,
329-
campaignId,
330329
campaignIds,
331330
clientId,
332331
clientKey: userDetails.clientKey,

0 commit comments

Comments
 (0)