diff --git a/src/interface/web/app/page.tsx b/src/interface/web/app/page.tsx index 4f08a95a..96c783ac 100644 --- a/src/interface/web/app/page.tsx +++ b/src/interface/web/app/page.tsx @@ -90,7 +90,7 @@ function ChatBodyData(props: ChatBodyDataProps) { }, [props.chatOptionsData]); useEffect(() => { - const nSlice = props.isMobileWidth ? 3 : 4; + const nSlice = props.isMobileWidth ? 2 : 4; const shuffledAgents = agentsData ? [...agentsData].sort(() => 0.5 - Math.random()) : []; const agents = agentsData ? [agentsData[0]] : []; // Always add the first/default agent. @@ -170,7 +170,7 @@ function ChatBodyData(props: ChatBodyDataProps) { }