Skip to content

Commit

Permalink
Fix remove event listener
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherd-l committed Apr 5, 2024
1 parent 3a0d585 commit 1180c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/onesignal/UserNamespace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,6 @@ export default class UserNamespace extends EventListenerBase {
event: 'change',
listener: (userChange: UserChangeEvent) => void,
): void {
UserNamespace.emitter.on(event, listener);
UserNamespace.emitter.off(event, listener);
}
}

0 comments on commit 1180c97

Please sign in to comment.