From 4acba6da97c09bb478f007fe71a3710cd37c4a25 Mon Sep 17 00:00:00 2001 From: kimywann Date: Thu, 20 Nov 2025 13:13:16 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20prettier=20=EC=A0=81=EC=9A=A9=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=94=B0=EC=98=B4=ED=91=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/post.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/post.ts b/src/api/post.ts index e9c8a84..db0b998 100644 --- a/src/api/post.ts +++ b/src/api/post.ts @@ -17,12 +17,12 @@ const parseJsonField = (value: unknown, defaultValue: T): T => { }; export const fetchPosts = async ( - category?: string, + category?: string ): Promise => { let query = supabase .from("post") .select( - "id, category, title, recruitment_deadline, progress_method, duration, position, tech_stack, author, created_at, status", + "id, category, title, recruitment_deadline, progress_method, duration, position, tech_stack, author, created_at, status" ) .eq("status", POST_STATUS.PUBLISH); @@ -62,7 +62,7 @@ export const fetchRecentPosts = async (): Promise => { const { data, error } = await supabase .from("post") .select( - "id, category, title, recruitment_deadline, progress_method, duration, position, tech_stack, author, created_at, status", + "id, category, title, recruitment_deadline, progress_method, duration, position, tech_stack, author, created_at, status" ) .eq("status", POST_STATUS.PUBLISH) .order("created_at", { ascending: false })