diff --git a/src/components/middle/HeaderActions.tsx b/src/components/middle/HeaderActions.tsx index 2b68ee308..3e98b28d3 100644 --- a/src/components/middle/HeaderActions.tsx +++ b/src/components/middle/HeaderActions.tsx @@ -126,47 +126,51 @@ const HeaderActions: FC = ({ return (
- {!IS_SINGLE_COLUMN_LAYOUT && canExpandActions && canSubscribe && ( - - )} - {!IS_SINGLE_COLUMN_LAYOUT && canExpandActions && canStartBot && ( - - )} - {!IS_SINGLE_COLUMN_LAYOUT && canExpandActions && canRestartBot && ( - - )} - {!IS_SINGLE_COLUMN_LAYOUT && canSearch && ( - + {!IS_SINGLE_COLUMN_LAYOUT && ( + <> + {canExpandActions && canSubscribe && ( + + )} + {canExpandActions && canStartBot && ( + + )} + {canExpandActions && canRestartBot && ( + + )} + {canSearch && ( + + )} + )}