diff --git a/apps/web/src/components/Basenames/UsernameProfileSectionFrames/Frame.tsx b/apps/web/src/components/Basenames/UsernameProfileSectionFrames/Frame.tsx index 480b7a449d..998e688c39 100644 --- a/apps/web/src/components/Basenames/UsernameProfileSectionFrames/Frame.tsx +++ b/apps/web/src/components/Basenames/UsernameProfileSectionFrames/Frame.tsx @@ -48,6 +48,9 @@ export default function Frame({ url, className }: FrameProps) { const currentFrameStackItem = openFrameState.currentFrameStackItem; if (!currentFrameStackItem) return false; const status = currentFrameStackItem.status; + if (status === 'requestError') { + return true; + } if (status === 'done' && currentFrameStackItem.frameResult.frame.accepts) { return currentFrameStackItem.frameResult.frame.accepts.some( (element) => element.id === 'anonymous',