Skip to content

Commit

Permalink
[C-3566] UploadChip - fix text wrapping (#7056)
Browse files Browse the repository at this point in the history
  • Loading branch information
amendelsohn authored Jan 3, 2024
1 parent 7811bb7 commit f7e0852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/components/upload/UploadChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const UploadChip = ({
{...props}
>
<span>{icon}</span>
<Box w={100}>
<Box w={variant === 'card' ? 100 : 'auto'}>
<Text variant='title' size='m' color='subdued' strength='default'>
{text}
</Text>
Expand Down

0 comments on commit f7e0852

Please sign in to comment.