We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ca19b commit 01b3ad2Copy full SHA for 01b3ad2
packages/signals/signals-integration-tests/src/tests/custom-elements/index.bundle.tsx
@@ -16,10 +16,11 @@ declare global {
16
/**
17
* Not instantiating the analytics object here, as it will be instantiated in the test
18
*/
19
-;(window as any).SignalsPlugin = SignalsPlugin
20
-;(window as any).analytics = new AnalyticsBrowser()
+window.SignalsPlugin = SignalsPlugin
+window.analytics = new AnalyticsBrowser()
21
22
const App = () => {
23
return <TextField />
24
}
25
+
26
ReactDOM.render(<App />, document.getElementById('root'))
0 commit comments