From 3fadc71fff595f76be89311a05beccbd9b64eb90 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Fri, 13 Feb 2026 15:58:54 +1300 Subject: [PATCH] Update +page.svelte --- materialious/src/routes/(app)/search/[slug]/+page.svelte | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/materialious/src/routes/(app)/search/[slug]/+page.svelte b/materialious/src/routes/(app)/search/[slug]/+page.svelte index f6dc3de0..2e4c535e 100644 --- a/materialious/src/routes/(app)/search/[slug]/+page.svelte +++ b/materialious/src/routes/(app)/search/[slug]/+page.svelte @@ -73,7 +73,7 @@ const searchCacheItem = $searchCacheStore[data.searchStoreId]; - if (searchCacheItem?.getContinuation) { + if (searchCacheItem.getContinuation) { newSearch = await searchCacheItem.getContinuation(); if (newSearch.getContinuation) { @@ -87,11 +87,6 @@ }; newSearch = await getSearch(data.slug, searchOptions); - - // Set the continuation method if it exists - if (newSearch.getContinuation) { - searchCacheItem.getContinuation = newSearch.getContinuation; - } } if (newSearch.length === 0) {