()
| 6 | import { useLiquidGlassEffect } from "@app/hooks/useLiquidGlassEffect"; |
| 7 | |
| 8 | export function useAppBootstrap() { |
| 9 | const appSettingsState = useAppSettingsController(); |
| 10 | useCodeCssVars(appSettingsState.appSettings); |
| 11 | |
| 12 | const dictationState = useDictationController(appSettingsState.appSettings); |
| 13 | const debugState = useDebugLog(); |
| 14 | |
| 15 | const shouldReduceTransparency = |
| 16 | appSettingsState.reduceTransparency || isMobilePlatform(); |
| 17 | |
| 18 | useLiquidGlassEffect({ |
| 19 | reduceTransparency: shouldReduceTransparency, |
| 20 | onDebug: debugState.addDebugEntry, |
| 21 | }); |
| 22 | |
| 23 | return { |
| 24 | ...appSettingsState, |
| 25 | ...dictationState, |
| 26 | ...debugState, |
| 27 | shouldReduceTransparency, |
| 28 | }; |
| 29 | } |
nothing calls this directly
no test coverage detected