diff --git a/components/gallery/GalleryGrid.tsx b/components/gallery/GalleryGrid.tsx
index 0c32bb4..8796736 100644
--- a/components/gallery/GalleryGrid.tsx
+++ b/components/gallery/GalleryGrid.tsx
@@ -89,7 +89,7 @@ export function GalleryGrid({
{/* Grid */}
{passports.map((passport, i) => (
-
+
))}
diff --git a/components/gallery/PassportCard.tsx b/components/gallery/PassportCard.tsx
index b20cf0f..0190c2a 100644
--- a/components/gallery/PassportCard.tsx
+++ b/components/gallery/PassportCard.tsx
@@ -36,7 +36,7 @@ interface PassportCardProps {
}
export function PassportCard({ passport, index = 0 }: PassportCardProps) {
- const avatarUri = getAvatarDataUri(passport.agent_id, 64);
+ const avatarUri = getAvatarDataUri(passport.slug || passport.agent_id || '', 64);
const primaryFramework = passport.framework?.[0]
? getFrameworkById(passport.framework[0])
: null;
diff --git a/components/layout/PageLayout.tsx b/components/layout/PageLayout.tsx
index 7c748be..17a5184 100644
--- a/components/layout/PageLayout.tsx
+++ b/components/layout/PageLayout.tsx
@@ -87,7 +87,7 @@ function Header({ currentPage = "home" }: HeaderProps) {
Breeds