From 4feb71a697b2fa7a3262ad606d94a4a1b9f4a73f Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Thu, 18 Jun 2026 08:07:07 -0400 Subject: [PATCH] fix type errors --- frontend/src/__generated__/models/ClientTokenAdminSchema.ts | 2 ++ frontend/src/components/common/Game/VirtualTable.vue | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/__generated__/models/ClientTokenAdminSchema.ts b/frontend/src/__generated__/models/ClientTokenAdminSchema.ts index 3439aea49..060dfbfc1 100644 --- a/frontend/src/__generated__/models/ClientTokenAdminSchema.ts +++ b/frontend/src/__generated__/models/ClientTokenAdminSchema.ts @@ -11,5 +11,7 @@ export type ClientTokenAdminSchema = { created_at: string; user_id: number; username: string; + user_avatar_path: string; + user_updated_at: string; }; diff --git a/frontend/src/components/common/Game/VirtualTable.vue b/frontend/src/components/common/Game/VirtualTable.vue index 05ec8830a..9c97b72f9 100644 --- a/frontend/src/components/common/Game/VirtualTable.vue +++ b/frontend/src/components/common/Game/VirtualTable.vue @@ -138,7 +138,7 @@ function updateOptions({ sortBy }: { sortBy: SortBy }) { } else { // Clear the `orderBy` key when the user removes // the sort column from the table - romsStore.setOrderBy(null); + romsStore.setOrderBy(""); romsStore.setOrderDir("asc"); } romsStore.fetchRoms();