diff --git a/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx b/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx index 32d16edd..ba36c4de 100644 --- a/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx +++ b/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx @@ -98,7 +98,7 @@ const DashboardToolbar = React.forwardRef( }, [settingsLoaded, defaultMode, defaultModel, defaultThinkingLevel]); // Ghost-text predictions: what the user might type next, in their own voice. Fetched once per app // load (cached), then one is shown at a time and cycled while the composer sits idle+empty. Empty - // list (no signal / no provider / error) just leaves the static "What should I do sir..." placeholder. + // list (no signal / no provider / error) just leaves the static "Ask me to do anything..." placeholder. const [ghostList, setGhostList] = useState([]); const ghostFetchedRef = useRef(false); useEffect(() => { @@ -443,7 +443,7 @@ const DashboardToolbar = React.forwardRef( thinkingLevel={thinkingLevel} onThinkingLevelChange={handleThinkingLevelChange} prefillPrompt={prefillPrompt} - placeholderOverride="What should I do sir..." + placeholderOverride="Ask me to do anything..." ghostSuggestion={ghostSuggestion} />