fix(logo): update city name display logic for improved localization

This commit is contained in:
hamed
2026-06-21 17:10:21 +03:30
parent bb559df1a9
commit 1841a16b4d
+2 -1
View File
@@ -14,7 +14,8 @@ function Logo({ isAbsolute, matchedCity }) {
alt="logo"
/>
<p className="text-[#526CAC] text-[14px] lg:text-[16px] font-bold">
{matchedCity?.site_name || "نوبت ۷۲۴"}
{matchedCity?.site_name ||
(matchedCity?.name ? `${matchedCity.name} نوبت` : "نوبت ۷۲۴")}
</p>
</div>
</Link>