fix: recover inert macos webview startup

This commit is contained in:
lucaronin
2026-05-01 04:47:41 +02:00
parent 0df5c7882d
commit 1c010ddc22
7 changed files with 209 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
import { useEffect } from 'react'
import { markFrontendReady } from '@/utils/frontendReady'
export function FrontendReadyMarker() {
useEffect(() => {
markFrontendReady()
}, [])
return null
}