Add empty AST cache file for version 0.8.44 with non-object root data
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user