Commit 92cf1b7 1 parent 971f7da commit 92cf1b7 Copy full SHA for 92cf1b7
File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change
1
+ import { HideContext } from '@deities/hera/hooks/useHide.tsx' ;
1
2
import AudioPlayer from '@deities/ui/AudioPlayer.tsx' ;
2
3
import setupGamePad from '@deities/ui/controls/setupGamePad.tsx' ;
3
4
import setupKeyboard from '@deities/ui/controls/setupKeyboard.tsx' ;
4
5
import { getScopedCSSDefinitions } from '@deities/ui/CSS.tsx' ;
5
6
import { initializeCSSVariables } from '@deities/ui/cssVar.tsx' ;
7
+ import { AlertContext } from '@deities/ui/hooks/useAlert.tsx' ;
6
8
import { ScaleContext } from '@deities/ui/hooks/useScale.tsx' ;
7
9
import { setDefaultPortalContainer } from '@deities/ui/Portal.tsx' ;
8
10
import { css } from '@emotion/css' ;
@@ -66,7 +68,11 @@ if (import.meta.env.DEV) {
66
68
export default function ClientScope ( { children } : { children : JSX . Element } ) {
67
69
return (
68
70
< ScaleContext >
69
- < div className = { clientScopeStyle } > { children } </ div >
71
+ < HideContext >
72
+ < AlertContext >
73
+ < div className = { clientScopeStyle } > { children } </ div >
74
+ </ AlertContext >
75
+ </ HideContext >
70
76
</ ScaleContext >
71
77
) ;
72
78
}
You can’t perform that action at this time.
0 commit comments