Skip to content

Commit

Permalink
chore: removed return in notification
Browse files Browse the repository at this point in the history
  • Loading branch information
gaokevin1 committed Dec 16, 2024
1 parent 6834c6f commit cba40b3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/sdks/web-js-sdk/src/sdk/fedcm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,10 @@ const createFedCM = (sdk: CoreSdk, projectId: string) => ({
googleClient.prompt((notification) => {
if (notification?.isSkippedMoment()) {
onSkip?.();
return;
}

if (notification?.isDismissedMoment()) {
onDismissed?.();
return;
}
});
});
Expand Down

0 comments on commit cba40b3

Please sign in to comment.