Skip to content

Commit

Permalink
Fixed alignment response rate
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas committed Dec 11, 2024
1 parent 8b1b785 commit 465f491
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/containers/widget/widget-header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const WidgetHeader: FC<WidgetHeaderProps> = ({
<Title as="h3" className="text-base">
{indicator}
</Title>
{typeof responseRate === "number" && (
<div className="flex items-center gap-2">
<div className="flex items-center gap-2">
{typeof responseRate === "number" && (
<TooltipProvider>
<Tooltip delayDuration={350}>
<TooltipTrigger>
Expand All @@ -51,9 +51,9 @@ const WidgetHeader: FC<WidgetHeaderProps> = ({
</TooltipContent>
</Tooltip>
</TooltipProvider>
</div>
)}
{menu}
)}
{menu}
</div>
</div>
{question && <p className="text-xs text-muted-foreground">{question}</p>}
</header>
Expand Down

0 comments on commit 465f491

Please sign in to comment.