From 84cb5b691278f867bfde7f8c19bf756060a3375e Mon Sep 17 00:00:00 2001 From: enes Date: Thu, 24 Oct 2024 11:12:31 +0200 Subject: [PATCH] fix: add missing InnerBodyMain div feed layout --- src/layout/feed.tsx | 4 ++-- src/pages/feed.tsx | 2 +- src/pages/notifications.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/layout/feed.tsx b/src/layout/feed.tsx index 2566f31..6f68a29 100644 --- a/src/layout/feed.tsx +++ b/src/layout/feed.tsx @@ -2,9 +2,9 @@ import { Outlet } from 'react-router-dom' export const FeedLayout = () => { return ( - <> +

WIP

- +
) } diff --git a/src/pages/feed.tsx b/src/pages/feed.tsx index bcfc305..88694d9 100644 --- a/src/pages/feed.tsx +++ b/src/pages/feed.tsx @@ -1,3 +1,3 @@ export const FeedPage = () => { - return

Feed

+ return

Feed

} diff --git a/src/pages/notifications.tsx b/src/pages/notifications.tsx index 5681bdd..6632a58 100644 --- a/src/pages/notifications.tsx +++ b/src/pages/notifications.tsx @@ -1,3 +1,3 @@ export const NotificationsPage = () => { - return

Notifications

+ return

Notifications

}