diff --git a/app/components/AuthenticatedLayout.tsx b/app/components/AuthenticatedLayout.tsx index 92b422a3c..37f024195 100644 --- a/app/components/AuthenticatedLayout.tsx +++ b/app/components/AuthenticatedLayout.tsx @@ -118,7 +118,9 @@ const AuthenticatedLayout: React.FC = ({ children }) => { {children} - + + + ); diff --git a/app/components/Notifications/Notifications.tsx b/app/components/Notifications/Notifications.tsx index e234b0376..9ae841828 100644 --- a/app/components/Notifications/Notifications.tsx +++ b/app/components/Notifications/Notifications.tsx @@ -67,19 +67,21 @@ function Notifications( - - ( - - )} - /> - + + + ( + + )} + /> + + {isEmpty && ( {t("No notifications yet")}. )} diff --git a/app/components/Sidebar/components/PlaceholderCollections.tsx b/app/components/Sidebar/components/PlaceholderCollections.tsx index 25dc68f06..49c732f59 100644 --- a/app/components/Sidebar/components/PlaceholderCollections.tsx +++ b/app/components/Sidebar/components/PlaceholderCollections.tsx @@ -1,17 +1,14 @@ import * as React from "react"; import styled from "styled-components"; -import DelayedMount from "~/components/DelayedMount"; import PlaceholderText from "~/components/PlaceholderText"; function PlaceholderCollections(props: React.HTMLAttributes) { return ( - - - - - - - + + + + + ); } diff --git a/app/components/Sidebar/components/Starred.tsx b/app/components/Sidebar/components/Starred.tsx index 3871a1732..78dbdd7a9 100644 --- a/app/components/Sidebar/components/Starred.tsx +++ b/app/components/Sidebar/components/Starred.tsx @@ -4,6 +4,7 @@ import * as React from "react"; import { useDrop } from "react-dnd"; import { useTranslation } from "react-i18next"; import Star from "~/models/Star"; +import DelayedMount from "~/components/DelayedMount"; import Flex from "~/components/Flex"; import useStores from "~/hooks/useStores"; import DropCursor from "./DropCursor"; @@ -90,7 +91,9 @@ function Starred() { )} {(stars.isFetching || fetchError) && !stars.orderedData.length && ( - + + + )}