fix: one lint that got past me

This commit is contained in:
Matthew Raymer
2025-05-28 14:03:21 +00:00
parent e824fcce2e
commit d2c3e5db05

View File

@@ -138,7 +138,7 @@ class AbsurdSqlDatabaseService implements DatabaseService {
break;
case "getAll":
queryResult = await this.db.exec(operation.sql, operation.params);
result = allResult[0]?.values || [];
result = queryResult[0]?.values || [];
break;
}
operation.resolve(result);