From 40d82342255429013589672abade5a9ed25eede0 Mon Sep 17 00:00:00 2001
From: Gabriel Kaszewski
Date: Fri, 15 May 2026 04:19:45 +0200
Subject: [PATCH] fix(frontend): hide pagination when only one page
---
thoughts-frontend/app/page.tsx | 2 ++
1 file changed, 2 insertions(+)
diff --git a/thoughts-frontend/app/page.tsx b/thoughts-frontend/app/page.tsx
index add13a3..b12d613 100644
--- a/thoughts-frontend/app/page.tsx
+++ b/thoughts-frontend/app/page.tsx
@@ -127,6 +127,7 @@ async function FeedPage({
)}
+ {totalPages > 1 && (
@@ -143,6 +144,7 @@ async function FeedPage({
+ )}