From 30de00cdfa27feb36c071c1b9d8b8e90fedb41e3 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 2 Jan 2025 15:08:35 -0600 Subject: [PATCH] Ignore errors in DebugMod screen --- src/view/screens/DebugMod.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/view/screens/DebugMod.tsx b/src/view/screens/DebugMod.tsx index 4ff0a4b8bd..e515a9a0f1 100644 --- a/src/view/screens/DebugMod.tsx +++ b/src/view/screens/DebugMod.tsx @@ -133,6 +133,7 @@ export const DebugModScreen = ({}: NativeStackScreenProps< }) mockedProfile.did = did mockedProfile.avatar = 'https://bsky.social/about/images/favicon-32x32.png' + // @ts-ignore ProfileViewBasic is close enough -esb mockedProfile.banner = 'https://bsky.social/about/images/social-card-default-gradient.png' return mockedProfile @@ -922,6 +923,7 @@ function MockAccountScreen({ // @ts-ignore ProfileViewBasic is close enough -prf profile={profile} moderationOpts={moderationOpts} + // @ts-ignore ProfileViewBasic is close enough -esb descriptionRT={new RichText({text: profile.description as string})} />