aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/main.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/app/src/app/main.jsx')
-rw-r--r--client/js/app/src/app/main.jsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/js/app/src/app/main.jsx b/client/js/app/src/app/main.jsx
index 96514d419e1..08f86115d40 100644
--- a/client/js/app/src/app/main.jsx
+++ b/client/js/app/src/app/main.jsx
@@ -1,9 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import { App } from 'app/app';
+import { ResponseProvider } from './pages/querybuilder/Components/Contexts/ResponseContext';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
- <App />
+ <ResponseProvider>
+ <App />
+ </ResponseProvider>
</React.StrictMode>
);