mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
c170eb0a5b
Two pre-existing tsgo failures surfaced by the loading-screen redesign PR: 1. AvatarEffectsView: import loadGamedata via the umbrella `@nitrots/nitro-renderer` instead of `@nitrots/utils`. The deep sub-package alias only exists in vite.config.mjs; tsgo resolves against node_modules, where only the umbrella is symlinked. Same symbol — index.ts re-exports `* from '@nitrots/utils'`. 2. DraggableWindow: `useRef<HTMLDivElement>()` -> `useRef<HTMLDivElement>(null)`. React 19 typings now require an initial value. Fixed once ina39aa37, re-introduced by the merge in03bebe4.