From 2aedbc24ede11d96d73848cfb858567046344ea9 Mon Sep 17 00:00:00 2001 From: Bernhard Owen Josephus Date: Wed, 21 Feb 2024 15:00:36 +0800 Subject: [PATCH] fix not found text glitchy move --- src/components/BlockingViews/BlockingView.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/components/BlockingViews/BlockingView.tsx b/src/components/BlockingViews/BlockingView.tsx index edec30604b88..7b33c8054950 100644 --- a/src/components/BlockingViews/BlockingView.tsx +++ b/src/components/BlockingViews/BlockingView.tsx @@ -85,13 +85,15 @@ function BlockingView({ width={iconWidth} height={iconHeight} /> - {title} + + {title} - {shouldEmbedLinkWithSubtitle ? ( - {renderContent()} - ) : ( - {renderContent()} - )} + {shouldEmbedLinkWithSubtitle ? ( + {renderContent()} + ) : ( + {renderContent()} + )} + ); }