feat: remove RooTips from welcome screen to clean up UI

- Remove RooTips component from ChatView welcome section
- Keep RooTips component intact for potential future use
- Addresses issue #5683 by removing informational tips about Customizable Modes and Task Orchestration
- Results in cleaner, less cluttered welcome screen
This commit is contained in:
Roo Code 2025-07-14 05:58:46 +00:00
parent a163053430
commit d097a620f4

View file

@ -36,7 +36,6 @@ import { useAppTranslation } from "@src/i18n/TranslationContext"
import { useExtensionState } from "@src/context/ExtensionStateContext"
import { useSelectedModel } from "@src/components/ui/hooks/useSelectedModel"
import RooHero from "@src/components/welcome/RooHero"
import RooTips from "@src/components/welcome/RooTips"
import { StandardTooltip } from "@src/components/ui"
import TelemetryBanner from "../common/TelemetryBanner"
@ -1675,9 +1674,6 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
}}
/>
</p>
<div className="mb-2.5">
<RooTips cycle={false} />
</div>
{/* Show the task history preview if expanded and tasks exist */}
{taskHistory.length > 0 && isExpanded && <HistoryPreview />}
</div>