From ef6044cfefd1517c78948b9ccbf21d79cf47c6ab Mon Sep 17 00:00:00 2001 From: EUForest Date: Tue, 6 Jan 2026 21:08:20 +0800 Subject: [PATCH] fix bug: The client cannot be downloaded without a schema configured. --- apps/user/src/sections/user/dashboard/content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user/src/sections/user/dashboard/content.tsx b/apps/user/src/sections/user/dashboard/content.tsx index ff9fa30..db0b531 100644 --- a/apps/user/src/sections/user/dashboard/content.tsx +++ b/apps/user/src/sections/user/dashboard/content.tsx @@ -433,7 +433,7 @@ export default function Content() { ?.filter( (application) => !!( - application.download_link?.[platform] && + application.download_link?.[platform] || application.scheme ) )