diff --git a/CHANGELOG.md b/CHANGELOG.md
index f990d4a..f64cc8b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## Version 0.1.15
+
+### Fixed
+
+- fix responsive layout for header and coins page in small viewport
+
## Version 0.1.14
### Added
diff --git a/components/CoinBalance.tsx b/components/CoinBalance.tsx
index af142fe..2b4e22e 100644
--- a/components/CoinBalance.tsx
+++ b/components/CoinBalance.tsx
@@ -1,6 +1,6 @@
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
import { Coins } from 'lucide-react'
-import { formatNumber } from '@/lib/utils/formatNumber'
+import { FormattedNumber } from '@/components/FormattedNumber'
import { useAtom } from 'jotai'
import { settingsAtom } from '@/lib/atoms'
import { useCoins } from '@/hooks/useCoins'
@@ -18,12 +18,12 @@ export default function CoinBalance({ coinBalance }: { coinBalance: number }) {