diff --git a/functions/api/game-appeals/precheck.ts b/functions/api/game-appeals/precheck.ts
index fe1a306..db08a83 100644
--- a/functions/api/game-appeals/precheck.ts
+++ b/functions/api/game-appeals/precheck.ts
@@ -48,7 +48,7 @@ export default async function (
 
   try {
     userLogs = await context.env.D1.prepare(
-      "SELECT executed_at FROM game_mod_logs WHERE target = ? ORDER bv executed_at DESC;",
+      "SELECT executed_at FROM game_mod_logs WHERE target = ? ORDER BY executed_at DESC;",
     )
       .bind(user)
       .all();