diff --git a/src/lib/db/client-applications-store.ts b/src/lib/db/client-applications-store.ts index 2d2c29be4c..917d62b8f1 100644 --- a/src/lib/db/client-applications-store.ts +++ b/src/lib/db/client-applications-store.ts @@ -111,7 +111,7 @@ export default class ClientApplicationsStore async getAll(): Promise { const rows = await this.db .select(COLUMNS) - .from('TABLE') + .from(TABLE) .orderBy('app_name', 'asc'); return rows.map(mapRow);