Skip to content

Commit fd71057

Browse files
committed
fix(ga4): remove fallback kochi
1 parent 7ebfcbc commit fd71057

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

www/components/AboutSection.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ export async function AboutSection({ username }: { username: string }) {
8080
</p>
8181
</div>
8282

83-
<div
84-
className="bg-[#B9FF66] rounded-xl p-6 border-1 border-black border-b-4 col-span-2 transition-all duration-300 hover:shadow-lg hover:-translate-y-1 animate-fade-in"
85-
style={{ animationDelay: "500ms" }}
83+
{user?.location && (<div
84+
className="bg-[#B9FF66] rounded-xl p-6 border-1 border-black border-b-4 col-span-2 transition-all duration-300 hover:shadow-lg hover:-translate-y-1 animate-fade-in"
85+
style={{animationDelay: "500ms"}}
8686
>
8787
<h2 className="text-xl font-bold mb-2">📍 Location</h2>
88-
<p>{user?.location || "Kochi"}</p>
89-
</div>
88+
<p>{user?.location}</p>
89+
</div>)}
9090
</div>
9191
</div>
9292
</>

0 commit comments

Comments
 (0)