Skip to content

Commit 4c1ed4b

Browse files
author
Jeremie Poisson
committed
fix prettier
1 parent 503febe commit 4c1ed4b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/IndexedDbProvider.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ export class IndexedDbTransaction implements DbTransaction {
825825
errorDetail +
826826
", History: " +
827827
history.join(",")
828-
)
828+
)
829829
);
830830
};
831831

@@ -878,7 +878,9 @@ export class IndexedDbTransaction implements DbTransaction {
878878
const indexStoreName = storeSchema.name + "_" + indexSchema.name;
879879
const indexStore = this._indexStoreMap.get(indexStoreName);
880880
if (!indexStore) {
881-
throw new Error("Index store not found in transaction: " + indexStoreName);
881+
throw new Error(
882+
"Index store not found in transaction: " + indexStoreName
883+
);
882884
}
883885
indexStores.push(indexStore);
884886
}

0 commit comments

Comments
 (0)