Skip to content

Commit

Permalink
Merge branch 'add-arrow' into 'master'
Browse files Browse the repository at this point in the history
Fix: Add arrow for webapp

See merge request kchat/webapp!859
  • Loading branch information
antonbuks committed Jul 31, 2024
2 parents 68678bd + b769f2d commit 9c9d208
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import styled from 'styled-components';

import AppNameDisplay from 'components/app_name_display';

import {isDesktopApp} from 'utils/user_agent';

import HistoryButtons from './history_buttons';

const LeftControlsContainer = styled.div`
Expand Down Expand Up @@ -42,7 +40,7 @@ const LeftControls = ({headerRef}: {headerRef: React.RefObject<HTMLDivElement>})
<LeftControlsContainer ref={headerRef}>
{/* <ProductMenu/> */}
<AppNameDisplay/>
{isDesktopApp() && <HistoryButtons/>}
<HistoryButtons/>
</LeftControlsContainer>
);

Expand Down

0 comments on commit 9c9d208

Please sign in to comment.