Skip to content

Commit

Permalink
remove textStyle prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Da-Colon committed May 15, 2024
1 parent 047c5b8 commit 36c0e50
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ui/proposal/ProposalCountdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function ProposalCountdown({
proposal,
showIcon = true,
textColor = 'white-0',
textStyle = 'label-base', // previous default
}: {
proposal: FractalProposal;
showIcon?: boolean;
Expand Down Expand Up @@ -91,7 +90,7 @@ export function ProposalCountdown({
>
<Text
color={textColor}
textStyle={textStyle}
textStyle='label-base'
>
{showDays && `${zeroPad(daysLeft)}:`}
{showHours && `${zeroPad(hoursLeft)}:`}
Expand Down

0 comments on commit 36c0e50

Please sign in to comment.