diff --git a/apps/web/app/(app)/[emailAccountId]/assistant/ActionSummaryCard.tsx b/apps/web/app/(app)/[emailAccountId]/assistant/ActionSummaryCard.tsx index 4aebcb4e92..72ad6de151 100644 --- a/apps/web/app/(app)/[emailAccountId]/assistant/ActionSummaryCard.tsx +++ b/apps/web/app/(app)/[emailAccountId]/assistant/ActionSummaryCard.tsx @@ -6,6 +6,11 @@ import { ACTION_TYPE_TEXT_COLORS, ACTION_TYPE_ICONS, } from "@/app/(app)/[emailAccountId]/assistant/constants"; +import { TooltipExplanation } from "@/components/TooltipExplanation"; +import { + AWAITING_REPLY_LABEL_NAME, + NEEDS_REPLY_LABEL_NAME, +} from "@/utils/reply-tracker/consts"; export function ActionSummaryCard({ action, @@ -18,6 +23,7 @@ export function ActionSummaryCard({ typeOptions.find((opt) => opt.value === action.type)?.label || action.type; let summaryContent: React.ReactNode = actionTypeLabel; + let tooltipText: string | undefined; switch (action.type) { case ActionType.LABEL: { @@ -59,13 +65,21 @@ export function ActionSummaryCard({ } else { summaryContent = ( <> - AI draft reply - {action.to?.value && ( - - {" "} - to {action.to.value} - - )} +