Skip to content

Commit

Permalink
fix(clerk-js): Correctly truncate the name in the OrganizationProfile…
Browse files Browse the repository at this point in the history
… Navbar
  • Loading branch information
desiprisg authored and nikosdouvlis committed Oct 26, 2022
1 parent 580a423 commit fc06ec7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const OrganizationProfileNavbar = (
name: 'Drivepoint',
logoUrl: 'https://images.lclclerk.com/uploaded/img_2GE5fixIVWTNMdRjcH7ivtelSxT.png',
}}
sx={t => ({ margin: `0 0 ${t.space.$2x5} ${t.space.$2}` })}
sx={t => ({ margin: `0 0 ${t.space.$2x5} ${t.space.$2}`, maxWidth: t.space.$60 })}
/>
}
routes={organizationProfileRoutes}
Expand Down

0 comments on commit fc06ec7

Please sign in to comment.