Add empty AST cache file for version 0.8.44 with non-object root data

This commit is contained in:
hamed
2026-07-08 17:38:32 +03:30
parent 082f54cf4d
commit ee47b535d8
110 changed files with 415 additions and 790 deletions
+3 -4
View File
@@ -3,13 +3,12 @@ import Call from "./call/Call";
import Connect from "./Connect";
async function ContactUsPage() {
const { matchedCity } = await getStateInfo();
const isDefault = matchedCity?.id === "63";
const { matchedCity, isRoot } = await getStateInfo();
return (
<div className="w-full pt-[24px] sm:pt-[56px] md:pt-[88px] lg:pt-[120px] mt-[56px] padding-responsive flex flex-col lg:flex-row items-center justify-between h-fit">
<Call matchedCity={matchedCity} isDefault={isDefault} />
{matchedCity?.id === "63" && <Connect />}
<Call matchedCity={matchedCity} isDefault={isRoot} />
{isRoot && <Connect />}
</div>
);
}