diff --git a/bot_update_pinned_post.py b/bot_update_pinned_post.py
index dd09e86..8112c3a 100644
--- a/bot_update_pinned_post.py
+++ b/bot_update_pinned_post.py
@@ -90,7 +90,7 @@ def build_message(usd: float, btc: float, fng_value: int, fng_label: str) -> str
return (
f"💲 "
f"₽{usd:.2f} 💰 "
- f"${btc:,.0f} 😱 {fng_value} ({fng_label})"
+ f"${btc:,.0f}".replace(",", " ") + f" 😱 {fng_value} ({fng_label})"
)