Skip to content

Commit d0ae0d6

Browse files
committed
fix format
1 parent 5e15978 commit d0ae0d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/web/src/shared/ui/charts/simple-line-chart.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ const CustomTooltip: React.FC<ICustomTooltipProps> = (props) => {
185185
</div>
186186
)}
187187
<p>
188-
{typeof value === 'number' ? value.toLocaleString() : String(value)}
188+
{typeof value === 'number' ?
189+
value.toLocaleString()
190+
: String(value)}
189191
</p>
190192
</div>
191193
);

0 commit comments

Comments
 (0)