Skip to content

Commit

Permalink
Fix: Add arrow for webapp
Browse files Browse the repository at this point in the history
Changelog: fixed
  • Loading branch information
Boris authored and Boris committed Jul 30, 2024
1 parent 6c3ca9f commit b769f2d
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 b769f2d

Please sign in to comment.