Refactor: Implement complete plan

This commit is contained in:
gpt-engineer-app[bot]
2025-10-17 14:04:57 +00:00
parent a89a740611
commit a2e05c5080
10 changed files with 258 additions and 68 deletions

View File

@@ -121,7 +121,7 @@ export function RideCreditsManager({ userId }: RideCreditsManagerProps) {
const { data, error } = await query;
if (error) throw error;
let processedData = (data || []) as any[];
let processedData = data || [];
// Sort by name client-side if needed
if (sortBy === 'name') {