Skip to content
Snippets Groups Projects
Commit 75e72e9e authored by Anton Georgiev's avatar Anton Georgiev
Browse files

resolve linting issues

parent 9f87a4f3
No related branches found
No related tags found
No related merge requests found
......@@ -43,21 +43,20 @@ const DesktopShare = ({
isUserPresenter,
}) => (
(screenSharingCheck && !isMobileBrowser && isUserPresenter ?
<Button
className={styles.button}
icon="desktop"
label={intl.formatMessage(isVideoBroadcasting ?
intlMessages.stopDesktopShareLabel : intlMessages.desktopShareLabel)}
description={intl.formatMessage(isVideoBroadcasting ?
intlMessages.stopDesktopShareDesc : intlMessages.desktopShareDesc)}
color="primary"
icon="desktop"
ghost={false}
hideLabel
circle
size="lg"
onClick={isVideoBroadcasting ? handleUnshareScreen : handleShareScreen}
/>
<Button
className={styles.button}
icon="desktop"
label={intl.formatMessage(isVideoBroadcasting ?
intlMessages.stopDesktopShareLabel : intlMessages.desktopShareLabel)}
description={intl.formatMessage(isVideoBroadcasting ?
intlMessages.stopDesktopShareDesc : intlMessages.desktopShareDesc)}
color="primary"
ghost={false}
hideLabel
circle
size="lg"
onClick={isVideoBroadcasting ? handleUnshareScreen : handleShareScreen}
/>
: null)
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment