finish renaming

This commit is contained in:
Maze Winther
2025-06-22 13:09:21 +02:00
parent 6b77e83ca0
commit 5792eecfc3
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import { create } from "zustand";
interface AppState {
interface EditorState {
// Loading states
isInitializing: boolean;
isPanelsReady: boolean;
@ -11,7 +11,7 @@ interface AppState {
initializeApp: () => Promise<void>;
}
export const useAppStore = create<AppState>((set, get) => ({
export const useEditorStore = create<EditorState>((set, get) => ({
// Initial states
isInitializing: true,
isPanelsReady: false,