mirror of
https://github.com/Infisical/infisical.git
synced 2026-05-02 03:02:03 -04: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