diff --git a/packages/ui/src/components/chat/ChatInput.tsx b/packages/ui/src/components/chat/ChatInput.tsx index c8f9d157..28531133 100644 --- a/packages/ui/src/components/chat/ChatInput.tsx +++ b/packages/ui/src/components/chat/ChatInput.tsx @@ -3322,8 +3322,6 @@ const ChatInputComponent: React.FC = ({ + props: Pick & { onOpenPicker: (picker: 'project' | 'branch') => void }, ) { const { t } = useI18n(); - const { selectedProject, selectedBranchLabel, showBranchSelector, hasUncommittedChanges, announceDirtyState, theme, onOpenPicker } = props; - const dirtyTooltip = useDirtyFlashTooltip(hasUncommittedChanges, announceDirtyState); + const { selectedProject, selectedBranchLabel, showBranchSelector, theme, onOpenPicker } = props; return (
@@ -503,30 +502,14 @@ export function MobileDraftTargetTriggers( {showBranchSelector ? ( - - - - - {hasUncommittedChanges ? ( - - {t('chat.draftDirtyNotice.tooltip')} - - ) : null} - + ) : null}
);