diff --git a/commafeed-client/src/components/ActionButtton.tsx b/commafeed-client/src/components/ActionButtton.tsx index 62ef4a66..3c5256c4 100644 --- a/commafeed-client/src/components/ActionButtton.tsx +++ b/commafeed-client/src/components/ActionButtton.tsx @@ -20,7 +20,7 @@ interface ActionButtonProps { export const ActionButton = forwardRef((props: ActionButtonProps, ref) => { const theme = useMantineTheme() const variant = props.variant ?? "subtle" - const mobile = useMobile(theme.breakpoints.xl) + const mobile = useMobile("1600px") const iconOnly = (mobile && !props.showLabelOnMobile) || (!mobile && props.hideLabelOnDesktop) return iconOnly ? (