diff --git a/apps/explorer/src/app/components/footer/footer.tsx b/apps/explorer/src/app/components/footer/footer.tsx index 00a501614..fd9f00c6d 100644 --- a/apps/explorer/src/app/components/footer/footer.tsx +++ b/apps/explorer/src/app/components/footer/footer.tsx @@ -10,7 +10,7 @@ export const Footer = () => { const [nodeSwitcherOpen, setNodeSwitcherOpen] = useState(false); const { screenSize } = useScreenDimensions(); const showFullFeedbackLabel = useMemo( - () => ['lg', 'xl', 'xxl', 'xxxl'].includes(screenSize), + () => ['md', 'lg', 'xl', 'xxl', 'xxxl'].includes(screenSize), [screenSize] );