[bugfix] Fix top-level async error.

This commit is contained in:
Sakamoto Shiina
2025-05-11 17:47:49 +09:00
parent 0d1a59a5ce
commit df231ad618

View File

@@ -5,7 +5,7 @@ import "./_index_css/root.css";
import { getCurrentWindow } from "@tauri-apps/api/window";
import { store } from "@store";
store.appWindow = await getCurrentWindow();
store.appWindow = getCurrentWindow();
import { App } from "./App";