Skip to content

Commit

Permalink
chore(ui): Tweaking loader placeholders.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotcourant committed Nov 26, 2022
1 parent a470c9c commit 191c6d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/components/FundingSchedules/FundingScheduleListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function FundingScheduleListItem(props: Props): JSX.Element {
if (contributionForecast.isLoading) {
return (
// TODO This will break with the next MUI upgrade.
<Skeleton variant="text" width={80} height={28} />
<Skeleton variant="text" width={80} height={24} />
);
}

Expand All @@ -80,7 +80,7 @@ export default function FundingScheduleListItem(props: Props): JSX.Element {
return null;
}

let loader = <Skeleton variant="text" width={80} height={28} />;
let loader = <Skeleton variant="text" width={80} height={24} />;

let textColor = 'text-gray-500'

Expand Down

0 comments on commit 191c6d0

Please sign in to comment.