From 2e5795945b3ca6c5473c388091b54a646537165d Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Wed, 21 May 2025 22:31:45 +0700 Subject: [PATCH] chore: fix slice default model --- web-app/src/routes/hub.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/src/routes/hub.tsx b/web-app/src/routes/hub.tsx index af6819ce0..2bb3de279 100644 --- a/web-app/src/routes/hub.tsx +++ b/web-app/src/routes/hub.tsx @@ -294,7 +294,7 @@ function Hub() { {expandedModels[model.id] && model.models.length > 0 && (
- {model.models.slice(1).map((variant) => ( + {model.models.map((variant) => (