Merge branch 'stable-additions' into stable-plus-ui-glow

This commit is contained in:
Dustin Loring 2024-12-01 10:01:31 -05:00 committed by GitHub
commit 4384568c68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ export async function openDatabase(): Promise<IDBDatabase | undefined> {
console.error('indexedDB is not available in this environment.');
return undefined;
}
return new Promise((resolve) => {
const request = indexedDB.open('boltHistory', 1);