Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions static/app/utils/intercom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,11 @@ async function initIntercom(orgSlug: string): Promise<void> {
}

hasRebootedAfterShow = true;
shutdown();
boot(intercomSettings);
show();
setTimeout(() => {
shutdown();
boot(intercomSettings);
show();
}, 2000);
Comment thread
scttcper marked this conversation as resolved.
Comment thread
scttcper marked this conversation as resolved.
Comment thread
scttcper marked this conversation as resolved.
});
} catch (error) {
// Reset so user can retry on next click
Expand Down
Loading