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 };