Skip to content

Commit

Permalink
fix(APP-3092): Truncate DAO links on settings page (#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
Barukimang authored Jul 11, 2024
1 parent 54d4977 commit 043c237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const SettingsCardDao: React.FC<{daoDetails: DaoDetails}> = ({daoDetails}) => {
<DescriptionPair className="border-none">
<Term>{t('labels.links')}</Term>
<Definition>
<div className="relative flex flex-col space-y-3">
<div className="relative flex flex-col space-y-3 xl:max-w-sm">
{daoDetails.metadata.links.slice(0, 3).map(({name, url}) => (
<Link
key={url}
Expand Down

0 comments on commit 043c237

Please sign in to comment.