We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92be75a commit 718e28dCopy full SHA for 718e28d
package/src/store/QuickSqliteClient.ts
@@ -33,7 +33,7 @@ export class QuickSqliteClient {
33
static setDbVersion = (version: number) => (this.dbVersion = version);
34
35
// @ts-ignore
36
- static isQuickSqliteV4 = sqlite.executeSql ? true : false;
+ static isQuickSqliteV4 = sqlite?.executeSql ? true : false;
37
38
// print if legacy version
39
static openDB = () => {
0 commit comments