Format Blink query observer

This commit is contained in:
Austin McKinley
2026-08-19 09:37:08 -07:00
parent 6a0c257099
commit e86b585505
+4 -1
View File
@@ -102,7 +102,10 @@ export class Database {
return this.db.isTransaction
}
async observeQuery<T>(operation: string, query: () => Promise<T>): Promise<T> {
async observeQuery<T>(
operation: string,
query: () => Promise<T>,
): Promise<T> {
const startedAt = performance.now()
try {
return await query()