diff --git a/web/components/tipper.tsx b/web/components/tipper.tsx index 46a988f6..ccb8361f 100644 --- a/web/components/tipper.tsx +++ b/web/components/tipper.tsx @@ -128,7 +128,7 @@ function DownTip(props: { onClick?: () => void }) { function UpTip(props: { onClick?: () => void; value: number }) { const { onClick, value } = props - const IconKind = value >= 10 ? ChevronDoubleRightIcon : ChevronRightIcon + const IconKind = value > TIP_SIZE ? ChevronDoubleRightIcon : ChevronRightIcon return (