From 88160ecba09c654a35d8abc7753be8477163f1b4 Mon Sep 17 00:00:00 2001 From: Joel Date: Mon, 29 Dec 2025 13:57:50 +0800 Subject: [PATCH] chore: remove useless comment --- web/service/apps.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/web/service/apps.ts b/web/service/apps.ts index 60052e27dd..db79141ec6 100644 --- a/web/service/apps.ts +++ b/web/service/apps.ts @@ -12,7 +12,6 @@ export const fetchAppDetail = ({ url, id }: { url: string, id: string }): Promis return get(`${url}/${id}`) } -// Direct API call function for one-off usage export const fetchAppDetailDirect = async ({ url, id }: { url: string, id: string }): Promise => { return get(`${url}/${id}`) }