@fto-consult/expo-ui 9.6.0 → 9.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fto-consult/expo-ui",
|
3
|
-
"version": "9.6.
|
3
|
+
"version": "9.6.1",
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
5
5
|
"react-native-paper-doc": "https://github.com/callstack/react-native-paper/tree/main/docs/docs/guides",
|
6
6
|
"scripts": {
|
@@ -115,7 +115,7 @@ export class SQLiteSession {
|
|
115
115
|
this.data.delete(key);
|
116
116
|
await this.init();
|
117
117
|
debug(`removing session: ${key}`)
|
118
|
-
return await this.db.runAsync(
|
118
|
+
return await this.db.runAsync(`DELETE FROM sessions WHERE key = ?`,key);
|
119
119
|
}
|
120
120
|
async getAll () {
|
121
121
|
if(!this.hasInit || !this.db) return {};
|