Fix Zustand shallow import
Use Zustand's public shallow selector export so the import page resolves correctly under the installed Zustand 5 package. This fixes the Vite boot overlay without changing import workflow behavior.
This commit is contained in:
parent
29ba4e0049
commit
28641403d9
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
import { create } from 'zustand';
|
import { create } from 'zustand';
|
||||||
import { combine } from 'zustand/middleware';
|
import { combine } from 'zustand/middleware';
|
||||||
import { useShallow } from 'zustand/react/shallow';
|
import { useShallow } from 'zustand/shallow';
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
ImportAlbumMatchPayload,
|
ImportAlbumMatchPayload,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue