diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx index d02e8bd..bdaea5f 100644 --- a/frontend/src/main.tsx +++ b/frontend/src/main.tsx @@ -37,12 +37,14 @@ window.onunhandledrejection = async (event) => { } } -ReactDOM.createRoot(useRoot()).render( - - - - - - - , -) +if (window.self === window.top) { + ReactDOM.createRoot(useRoot()).render( + + + + + + + , + ) +}