Skip to content

Commit 3713f9f

Browse files
committed
chore(profile-sync-controller): remove console.log from social pairing flow
1 parent 6a168f5 commit 3713f9f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/profile-sync-controller/src/controllers/authentication/AuthenticationController.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,7 @@ export default class AuthenticationController extends BaseController<
398398
}
399399

400400
try {
401-
console.log(`starting to pair with social token`);
402401
const paired = await this.#auth.pairSocialIdentifier(socialPairingToken);
403-
console.log(`pairing with social token success=${paired}`);
404402
if (paired) {
405403
this.update((state) => {
406404
// Prevents a race condition when sign-out is performed before pairing completes
@@ -410,7 +408,6 @@ export default class AuthenticationController extends BaseController<
410408
});
411409
}
412410
} finally {
413-
console.log(`pairing attempt done`);
414411
this.update((state) => {
415412
state.pairingInProgress = false;
416413
});

0 commit comments

Comments
 (0)