Skip to content

Commit

Permalink
fix: pool list tooltip alert width
Browse files Browse the repository at this point in the history
  • Loading branch information
amytsang committed Apr 23, 2024
1 parent 0ac7728 commit 272b84e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/loan/src/components/CollateralLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const CollateralLabel = ({ className, chainId, isVisible, collateralData, tableL
<div>
<Box flex flexAlignItems="center">
{collateralAlert?.isDeprecated && (
<AlertTooltipIcon placement="start" {...collateralAlert}>
<AlertTooltipIcon minWidth="300px" placement="start" {...collateralAlert}>
{collateralAlert.message}
</AlertTooltipIcon>
)}
Expand Down
2 changes: 1 addition & 1 deletion apps/main/src/components/PoolLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const PoolLabel = ({
{!isMobile && (
<>
{poolAlert?.isInformationOnly && (
<AlertTooltipIcon placement="start" {...poolAlert}>
<AlertTooltipIcon minWidth="300px" placement="start" {...poolAlert}>
{poolAlert.message}
</AlertTooltipIcon>
)}
Expand Down

0 comments on commit 272b84e

Please sign in to comment.