Skip to content

Commit

Permalink
Fix rendering of disclaimer content
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinewi committed Jan 16, 2025
1 parent 78d920d commit b293737
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Disclaimer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ const Disclaimer = ({ disclaimer }: Props) => {
<AccessibilityFill />
</Button>
</PopoverTrigger>
<PopoverContent>{transformedDisclaimer}</PopoverContent>
<PopoverContent>
<div>{transformedDisclaimer}</div>
</PopoverContent>
</PopoverRoot>
);
};
Expand Down

0 comments on commit b293737

Please sign in to comment.