From e3250baaf77d6c9725e87671bdf449f954990cd4 Mon Sep 17 00:00:00 2001 From: Yves Gugger Date: Sat, 13 Dec 2025 18:05:51 +0100 Subject: [PATCH] fix: getTldOverview API call params --- frontend/src/app/discover/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/discover/page.tsx b/frontend/src/app/discover/page.tsx index d393bab..4412d0b 100644 --- a/frontend/src/app/discover/page.tsx +++ b/frontend/src/app/discover/page.tsx @@ -52,7 +52,7 @@ export default function DiscoverPage() { setLoading(true) try { // Load real TLD data from the API - const response = await api.getTldOverview({ limit: 100, offset: 0 }) + const response = await api.getTldOverview(100, 0) // Transform the API response to our format const tldList: TldData[] = response.tlds.map((tld: any) => ({