From cc302c73d4885eca3e815b521de6aaca7a941660 Mon Sep 17 00:00:00 2001 From: Christopher Date: Thu, 22 Jan 2026 13:56:15 -0800 Subject: [PATCH] Fixed bug --- src/lib/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/lib/types.ts b/src/lib/types.ts index 166a25f..0281818 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -3,6 +3,13 @@ export interface User { handle: string; displayName: string; avatarUrl?: string | null; + bio?: string | null; + headerUrl?: string | null; + followersCount?: number; + followingCount?: number; + postsCount?: number; + createdAt?: string; + movedTo?: string | null; } export interface MediaItem {