After updating tauri-plugin-store from release candidate to v2.0.1 i'm getting this error on rust side tauri_plugin_store::with_store(app_handle, stores, app_data_dir, |store| { return Ok(store .get("my_key") .and_then(|value| { ... } ); } tauri_plugin_store::with_store(app...
[READ ONLY] This repository is a mirror, for issue tracking and development head to: https://github.com/tauri-apps/plugins-workspace - chore(store): format readme · tauri-apps/tauri-plugin-store@b1ce9b3
[READ ONLY] This repository is a mirror, for issue tracking and development head to: https://github.com/tauri-apps/plugins-workspace - Commits · tauri-apps/tauri-plugin-store
import { SqliteStore } from 'tauri-plugin-sqlite-store'; async function initDb() { const db = await SQliteStore.load(); // `CREATE DATABASE test ( // id INTEGER PRIMARY KEY AUTOINCREMENT, // name TEXT NOT NULL //)` const gen = db.getTableGenerator('test'); gen.addColumn('id',...