From b94b1e8b5cdcfd4bc0812e9725170c5a67ec28c7 Mon Sep 17 00:00:00 2001 From: contradiction29 Date: Tue, 23 Apr 2024 18:26:57 +0900 Subject: [PATCH] Increse number of related post count --- app/routes/_layout.archives.$postId.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/_layout.archives.$postId.tsx b/app/routes/_layout.archives.$postId.tsx index 58c21041..4fadcb58 100644 --- a/app/routes/_layout.archives.$postId.tsx +++ b/app/routes/_layout.archives.$postId.tsx @@ -74,7 +74,7 @@ export async function loader({ request }:LoaderFunctionArgs){ const { data, error } = await supabase.rpc("search_similar_content", { query_post_id: Number(postId), match_threshold: 0, - match_count: 15, + match_count: 16, }); let similarPosts = [];