Combined fixes (#116)

* fix: missing CheckIcon import in LanguageSelector

* fix: #114 and error handling

* fix: #97

* fix: lint

* feat: #104

* fix: #72
This commit is contained in:
DecDuck
2025-06-10 10:08:01 +10:00
committed by GitHub
parent 60abc03091
commit 1bfdd73e4c
10 changed files with 53 additions and 47 deletions

View File

@@ -39,7 +39,7 @@ export class ObjectTransactionalHandler {
if (!transaction) return;
let progress = 0;
const increment = (1 / transaction.size) * 100;
const increment = 100 / transaction.size;
for (const [id, data] of transaction) {
if (typeof data === "string") {