completionId: cgen-16378ab6ea6246518e5261db592a9360

cgen-16378ab6ea6246518e5261db592a9360
This commit is contained in:
Builder.io 2025-11-15 19:04:31 +00:00
parent 35133d884b
commit 1f7b3801eb

View file

@ -131,15 +131,16 @@ const SubdomainPassport = () => {
data.type === "creator" &&
"user" in data
) {
const user = data.user as any;
return (
<Layout>
<div className="container mx-auto px-4 max-w-5xl space-y-10">
<PassportSummary
profile={data.user as any}
achievements={[]}
interests={[]}
profile={user}
achievements={user.achievements || []}
interests={user.interests || []}
isSelf={false}
linkedProviders={[]}
linkedProviders={user.linkedProviders || []}
/>
</div>
</Layout>