Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ function SuggestedTaskCard({

return (
<motion.button
initial={{ opacity: 0, y: 12 }}
initial={{ opacity: 0, y: 6 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3, delay: index * 0.08 }}
transition={{ duration: 0.18, delay: index * 0.04 }}
onClick={() => onSelect(task)}
type="button"
className={`flex w-full cursor-pointer items-start rounded-xl border border-(--gray-a3) bg-(--color-panel-solid) text-left transition-[border-color,box-shadow] ${
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ interface SetupScanFeedProps {
icon: Icon;
color: string;
currentTool: string | null;
activeLabelOverride?: string;
recentEntries: ActivityEntry[];
isDone: boolean;
doneLabel?: string;
Expand Down Expand Up @@ -124,11 +125,14 @@ export function SetupScanFeed({
icon: LabelIcon,
color,
currentTool,
activeLabelOverride,
recentEntries,
isDone,
doneLabel = "Complete",
}: SetupScanFeedProps) {
const activeLabel = currentTool ? toolLabel(currentTool) : "Starting...";
const activeLabel =
activeLabelOverride ??
(currentTool ? toolLabel(currentTool) : "Starting...");

return (
<Flex direction="column" gap="0" className="w-full">
Expand Down
Loading
Loading