diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index 0f328dce..8df98b6e 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -19,7 +19,7 @@
"@mui/material": "^5.15.3",
"@mui/system": "^5.15.3",
"@mui/x-data-grid": "^6.19.2",
- "@mui/x-date-pickers": "^6.19.2"
+ "@mui/x-date-pickers": "^6.19.2",
"@nivo/core": "^0.84.0",
"@nivo/line": "^0.84.0",
"base-ex": "^0.8.1",
diff --git a/frontend/src/components/Dialogs/Coordinator.tsx b/frontend/src/components/Dialogs/Coordinator.tsx
index b35907fd..e8bb63f2 100644
--- a/frontend/src/components/Dialogs/Coordinator.tsx
+++ b/frontend/src/components/Dialogs/Coordinator.tsx
@@ -391,13 +391,13 @@ const CoordinatorDialog = ({ open = false, onClose, network, shortAlias }: Props
- {(coordinator?.info?.maker_fee ?? 0 * 100).toFixed(3)}%
+ {((coordinator?.info?.maker_fee ?? 0) * 100).toFixed(3)}%
- {(coordinator?.info?.taker_fee ?? 0 * 100).toFixed(3)}%
+ {((coordinator?.info?.taker_fee ?? 0) * 100).toFixed(3)}%
diff --git a/frontend/src/components/Dialogs/Exchange.tsx b/frontend/src/components/Dialogs/Exchange.tsx
index 02415104..4cb01c3c 100644
--- a/frontend/src/components/Dialogs/Exchange.tsx
+++ b/frontend/src/components/Dialogs/Exchange.tsx
@@ -155,7 +155,7 @@ const ExchangeDialog = ({ open = false, onClose }: Props): JSX.Element => {
flexWrap: 'wrap',
}}
>
- {pn(federation.exchange.info.last_day_volume)}
+ {pn(federation.exchange.info.last_day_volume.toFixed(8))}
@@ -176,7 +176,7 @@ const ExchangeDialog = ({ open = false, onClose }: Props): JSX.Element => {
flexWrap: 'wrap',
}}
>
- {pn(federation.exchange.info.lifetime_volume)}
+ {pn(federation.exchange.info.lifetime_volume.toFixed(8))}