Skip to content

Commit

Permalink
fix: Width exceeded 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbrowne committed Feb 20, 2024
1 parent 76b02cf commit 076b30b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/login/components/profile-tables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ const ProfileVisualizationsRow = (props: ProfileVisualizationsRowProps) => {
{config.data.chartConfigs.length > 1 ? "multi" : "single"}
</Typography>
</TableCell>
<TableCell width="35%">
<TableCell width="30%">
<NextLink href={`/v/${config.key}`} passHref legacyBehavior>
<Link color="primary">
<Typography variant="body2" noWrap>
Expand All @@ -478,7 +478,7 @@ const ProfileVisualizationsRow = (props: ProfileVisualizationsRowProps) => {
</Link>
</NextLink>
</TableCell>
<TableCell width="35%">
<TableCell width="30%">
{fetching ? (
<Skeleton width="50%" height={32} />
) : dataSet ? (
Expand Down

0 comments on commit 076b30b

Please sign in to comment.