From a2968004f7b658b409d739bdea7900d2ed32e463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Sat, 3 Jan 2026 17:21:58 +0100 Subject: [PATCH] pl-fe: fix not found layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- .../pl-fe/src/features/ui/components/profile-stats.tsx | 4 ++-- packages/pl-fe/src/pages/utils/generic-not-found.tsx | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/packages/pl-fe/src/features/ui/components/profile-stats.tsx b/packages/pl-fe/src/features/ui/components/profile-stats.tsx index 9214f6675..930b93785 100644 --- a/packages/pl-fe/src/features/ui/components/profile-stats.tsx +++ b/packages/pl-fe/src/features/ui/components/profile-stats.tsx @@ -70,7 +70,7 @@ const ProfileStats: React.FC = ({ account, onClickHandler }) => { {account.subscribers_count > 0 && ( - // + // {!demetricator && ( @@ -81,7 +81,7 @@ const ProfileStats: React.FC = ({ account, onClickHandler }) => { {intl.formatMessage(messages.subscribers)} - // + // )} ); diff --git a/packages/pl-fe/src/pages/utils/generic-not-found.tsx b/packages/pl-fe/src/pages/utils/generic-not-found.tsx index b63429672..9882f2409 100644 --- a/packages/pl-fe/src/pages/utils/generic-not-found.tsx +++ b/packages/pl-fe/src/pages/utils/generic-not-found.tsx @@ -1,9 +1,12 @@ import React from 'react'; -import MissingIndicator from '../../components/missing-indicator'; +import MissingIndicator from 'pl-fe/components/missing-indicator'; +import Layout from 'pl-fe/components/ui/layout'; const GenericNotFoundPage = () => ( - + + + ); export { GenericNotFoundPage as default };