From 464f902776714287680851a12718b4dd9a90f5d2 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 2 May 2025 15:02:47 -0400 Subject: [PATCH] Do not cache API response --- app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index 11bdc13..e00e2f6 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -128,7 +128,8 @@ function HomeContent() { setIsFetching(true); try { const response = await fetch( - "https://pricing.bitcoin.block.xyz/current-price" + "https://pricing.bitcoin.block.xyz/current-price", + { cache: "no-store" } ); if (!response.ok) {