You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix preconnect link to target search cluster (#3980)
The `appId` was retrieved from props but the `<Search>` component is never instantiated with props. So the preconnect link targeted an unknown search cluster:
```html
<link rel="preconnect" href="https://undefined-dsn.algolia.net" crossorigin="true">
```
This fixes the preconnect link by getting the `appId` from the website config.
0 commit comments