Skip to content

Commit 39a66aa

Browse files
committed
lint: fix
1 parent d0c4c5f commit 39a66aa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/modules/profile.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ export class ProfileModule implements BatchSDK.ProfileModule {
1313
}
1414

1515
identify(identifier: string | null): void {
16-
if (typeof identifier === 'undefined') {
17-
writeBatchLog(
18-
false,
19-
"BatchProfile - Identifier cannot be undefined, please use explicit null if you want to logout. Aborting."
20-
);
16+
if (typeof identifier === "undefined") {
17+
writeBatchLog(
18+
false,
19+
"BatchProfile - Identifier cannot be undefined, please use explicit null if you want to logout. Aborting."
20+
);
2121
return;
2222
}
2323
sendToBridge(null, Profile.Identify, [{ custom_user_id: identifier }]);

0 commit comments

Comments
 (0)