chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-09-10 14:36:24 +00:00
parent 1a0500b812
commit 1348873847
2 changed files with 14 additions and 11 deletions

View file

@ -48,7 +48,7 @@ export async function saveFragments(db: D1Database, fragments: NamedFragment[]):
if (!newKeys.has(key)) {
const [id, groupId] = key.split(":");
statements.push(
db.prepare("DELETE FROM d1_fragments WHERE id = ? AND group_id = ?").bind(id, groupId)
db.prepare("DELETE FROM d1_fragments WHERE id = ? AND group_id = ?").bind(id, groupId),
);
}
}

View file

@ -88,7 +88,10 @@ export function d1ConfigStore(db: D1Database, kv: KVNamespace): ConfigStore {
return [];
}
function routeStatements(routes: Route[], existingRouteKeys?: Set<string>): D1PreparedStatement[] {
function routeStatements(
routes: Route[],
existingRouteKeys?: Set<string>,
): D1PreparedStatement[] {
const now = Date.now();
const statements: D1PreparedStatement[] = [];
@ -99,7 +102,7 @@ export function d1ConfigStore(db: D1Database, kv: KVNamespace): ConfigStore {
if (!newKeys.has(key)) {
const [id, groupId] = key.split(":");
statements.push(
db.prepare("DELETE FROM d1_routes WHERE id = ? AND group_id = ?").bind(id, groupId)
db.prepare("DELETE FROM d1_routes WHERE id = ? AND group_id = ?").bind(id, groupId),
);
}
}