diff --git a/src/view/com/util/layouts/Breakpoints.tsx b/src/view/com/util/layouts/Breakpoints.tsx index 51c3ccd5af..6ee8bd34a9 100644 --- a/src/view/com/util/layouts/Breakpoints.tsx +++ b/src/view/com/util/layouts/Breakpoints.tsx @@ -5,4 +5,6 @@ export const TabletOrDesktop = ({}: React.PropsWithChildren<{}>) => null export const Tablet = ({}: React.PropsWithChildren<{}>) => null export const TabletOrMobile = ({children}: React.PropsWithChildren<{}>) => children -export const Mobile = ({children}: React.PropsWithChildren<{}>) => children +export const Mobile = ({children}: React.PropsWithChildren<{}>) => ( + <>{children} +)