diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 37ce8ac..81efbc0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -21,7 +21,7 @@ tauri-build = { version = "2", features = [] } tauri = { version = "2", features = [] } tauri-plugin-opener = "2" serde_json = "1" -rusqlite = "0.26.0" +rusqlite = { version = "0.31", features = ["bundled"] } anyhow = "1.0" lazy_static = "1.4.0" serde = { version = "1.0", features = ["derive"] } diff --git a/src/App.jsx b/src/App.jsx index cf4c765..695bb1b 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -18,7 +18,7 @@ function App() { console.error("Failed to fetch inventory:", error); } }; - +//TODO: https://www.npmjs.com/package/react-pro-sidebar useEffect(() => { fetchInventory(); }, []);