Describe the bug
I'm seeing this warning message even with the most basic setup and my appId hardcoded. I've dug through the codebase but couldn't find anything obvious. Any ideas?
[Intercom] The App ID in your code snippet has not been set. Set it to your App ID found in settings to complete installation: https://app.intercom.com/a/apps/_/settings/web
To Reproduce
import { IntercomProvider } from "react-use-intercom";
export const IntercomChat = ({ children }: { children: React.ReactNode }) => {
return <IntercomProvider appId="XXXXXXXX">{children}</IntercomProvider>;
};
export default function App() {
return (
<IntercomChat>
<div>
<h1>Hello World!</h1>
</div>
</IntercomChat>
);
}
Describe the bug
I'm seeing this warning message even with the most basic setup and my appId hardcoded. I've dug through the codebase but couldn't find anything obvious. Any ideas?
To Reproduce