Skip to content

Commit

Permalink
error type
Browse files Browse the repository at this point in the history
  • Loading branch information
Drashti Modasara committed Jul 16, 2024
1 parent 3ef626b commit e0a9a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/blocks/mobile-app-banner/mobile-app-banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function getECID() {
if (window.alloy) {
await window.alloy('getIdentity').then((data) => {
ecid = data?.identity?.ECID;
}).catch((err) => window.lana.log(err));
}).catch((err) => window.lana.log(`Error fetching ECID: ${err}`, { tags: 'errorType=error,module=mobile-app-banner' }));
}
return ecid;
}
Expand Down

0 comments on commit e0a9a84

Please sign in to comment.