Skip to content

Commit

Permalink
fix(ui): allow tooltip to wrap text
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Oct 16, 2024
1 parent 12918b2 commit 3d6e1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/expo-atlas-ui/components/FileSize.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type BundleFileSizeProps = {

export function FileSize(props: BundleFileSizeProps) {
return (
<div className="inline-flex flex-row items-start">
<div className="inline-flex flex-row items-start text-wrap">
{formatByteSize(props.byteSize)}
<Tooltip>
<TooltipTrigger className="group">
Expand Down

0 comments on commit 3d6e1ae

Please sign in to comment.