return elements that match specified CSS selector(s)

ogr2m1khumlj06st.js:1 Intercom not booted or setup incomplete.

This message typically indicates that the Intercom JavaScript library wasn’t properly initialized before attempting to use it. Common causes include:

  1. Missing or incorrect initialization code – Make sure you’ve included the Intercom script with the correct app ID and that you call Intercom('boot', {...}) with the required parameters before interacting with other methods.
  2. Boot called after use – Ensure Intercom('boot', …) runs before any other Intercom commands (like Intercom('show') or Intercom('update')).
  3. Multiple or repeated mounts – In single-page applications, loading the same script multiple times or calling boot on each navigation can lead to inconsistent states. Use Intercom('update', …) when the user or page context changes instead of booting repeatedly.
  4. Script not loaded – Verify that the Intercom script is correctly loaded from their CDN (check the network tab in your browser’s developer tools for errors).

Double-check that your Intercom configuration is complete and that you’re calling Intercom('boot', ...) before issuing any further commands. Once the library is properly booted, the warning should disappear.