diff --git a/studio/frontend/src/components/assistant-ui/thread.tsx b/studio/frontend/src/components/assistant-ui/thread.tsx index 131396402b..2c04538818 100644 --- a/studio/frontend/src/components/assistant-ui/thread.tsx +++ b/studio/frontend/src/components/assistant-ui/thread.tsx @@ -66,7 +66,6 @@ import { HeadphonesIcon, LightbulbIcon, LightbulbOffIcon, - LoaderIcon, MicIcon, MoreHorizontalIcon, RefreshCwIcon, @@ -246,7 +245,6 @@ const ThreadWelcome: FC<{ hideComposer?: boolean }> = ({ hideComposer }) => { Run GGUFs, safetensors, vision and audio models

- {!hideComposer && } @@ -254,21 +252,6 @@ const ThreadWelcome: FC<{ hideComposer?: boolean }> = ({ hideComposer }) => { ); }; -const GeneratingSpinner: FC = () => { - const status = useChatRuntimeStore((s) => s.generatingStatus); - if (!status) { - return null; - } - return ( -
-
- - Generating -
-
- ); -}; - const ComposerAnimated: FC<{ disabled?: boolean }> = ({ disabled }) => { return (