From 5657b6d9173619e72e38b3d8b3ddbe9d38726a2e Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Thu, 14 Aug 2025 10:28:11 +0700 Subject: [PATCH] chore: fix sanitaize --- web-app/src/routes/hub/index.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/web-app/src/routes/hub/index.tsx b/web-app/src/routes/hub/index.tsx index 6adcc300f..e7e89490c 100644 --- a/web-app/src/routes/hub/index.tsx +++ b/web-app/src/routes/hub/index.tsx @@ -765,16 +765,12 @@ function Hub() { onClick={() => { addLocalDownloadingModel( sanitizeModelId( - sanitizeModelId( - variant.model_id - ) + variant.model_id ) ) pullModel( sanitizeModelId( - sanitizeModelId( - variant.model_id - ) + variant.model_id ), variant.path )