mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Fixed the typeerror issue
This commit is contained in:
@@ -125,8 +125,8 @@ export const AppLayout = ({ children }: LayoutProps) => {
|
||||
)();
|
||||
|
||||
window.Intercom('boot', {
|
||||
app_id: {INTERCOM_ID},
|
||||
email: user.email || 'undefined'
|
||||
app_id: {INTERCOM_ID} || "undefined",
|
||||
email: user?.email || 'undefined'
|
||||
});
|
||||
}, []);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user