diff --git a/striker-ui/components/IconWithIndicator.tsx b/striker-ui/components/IconWithIndicator.tsx index 0d3bf834..d6a07814 100644 --- a/striker-ui/components/IconWithIndicator.tsx +++ b/striker-ui/components/IconWithIndicator.tsx @@ -127,7 +127,7 @@ const IconWithIndicator = forwardRef< ...indicatorTextSx, }} > - {value > INDICATOR_MAX ? `${INDICATOR_MAX}+` : value} + {Number(value) > INDICATOR_MAX ? `${INDICATOR_MAX}+` : value} ), [indicatorTextSx, restIndicatorTextProps],