diff --git a/client/utils/responsive.jsx b/client/utils/responsive.jsx index d611e393..89f20fe8 100644 --- a/client/utils/responsive.jsx +++ b/client/utils/responsive.jsx @@ -10,7 +10,7 @@ export const mobileEnabled = () => (window.process.env.MOBILE_ENABLED === true); * The created function returns a Component (props => jsx) */ export const createMobileFirst = store => (MobileComponent, Fallback) => props => ( - + {matches => ((matches || (store && store.getState().editorAccessibility.forceDesktop) || (!mobileEnabled())) ? : )}