diff --git a/frontend/src/components/StatusBadge.tsx b/frontend/src/components/StatusBadge.tsx index 52d51ff..215224e 100644 --- a/frontend/src/components/StatusBadge.tsx +++ b/frontend/src/components/StatusBadge.tsx @@ -93,16 +93,18 @@ export default function StatusBadge({ status, className = "", size = "md" }: Sta {BADGE_LABELS[status]} - {/* Tooltip — appears above the badge on hover */} + {/* Tooltip — appears below the badge on hover */} + {/* Arrow pointing up */} +

{tip.heading}

{tip.lines.map(({ label, text }) => (
@@ -112,8 +114,6 @@ export default function StatusBadge({ status, className = "", size = "md" }: Sta

{text}

))} - {/* Arrow pointing down */} -
);