diff --git a/client/src/config/sidebarMenu.js b/client/src/config/sidebarMenu.js
index 7d7bb45aa..a25c58942 100644
--- a/client/src/config/sidebarMenu.js
+++ b/client/src/config/sidebarMenu.js
@@ -117,7 +117,7 @@ export default [
},
{
text: ,
- href: '/ExchangeRates',
+ href: '/exchange-rates',
},
],
},
diff --git a/client/src/containers/ExchangeRates/ExchangeRateTable.js b/client/src/containers/ExchangeRates/ExchangeRateTable.js
index c5eb54d68..c3c2f9a26 100644
--- a/client/src/containers/ExchangeRates/ExchangeRateTable.js
+++ b/client/src/containers/ExchangeRates/ExchangeRateTable.js
@@ -13,7 +13,7 @@ import classNames from 'classnames';
import { CLASSES } from 'common/classes';
-import { DataTable, Icon, MoneyExchangeRate } from 'components';
+import { DataTable, Icon, Money } from 'components';
import LoadingIndicator from 'components/LoadingIndicator';
import withDialogActions from 'containers/Dialog/withDialogActions';
@@ -92,7 +92,7 @@ function ExchangeRateTable({
id: 'exchange_rate',
Header: formatMessage({ id: 'exchange_rate' }),
accessor: (r) => (
-
diff --git a/client/src/routes/dashboard.js b/client/src/routes/dashboard.js
index d52caa21a..a9b12fdf0 100644
--- a/client/src/routes/dashboard.js
+++ b/client/src/routes/dashboard.js
@@ -152,7 +152,7 @@ export default [
breadcrumb: 'Financial Reports',
},
{
- path: `/ExchangeRates`,
+ path: `/exchange-rates`,
component: LazyLoader({
loader: () => import('containers/ExchangeRates/ExchangeRate'),
}),