Skip to content

Commit 3f8ecc1

Browse files
author
timmydoza
authored
Upgrade twilio video (#590)
* Install Twilio-video 2.17.0 * Hide desktop menu on mobile * Improve appearance of network quality on mobile
1 parent 1c5eef7 commit 3f8ecc1

File tree

4 files changed

+21
-18
lines changed

4 files changed

+21
-18
lines changed

package-lock.json

+16-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"strip-color": "^0.1.0",
4343
"ts-node": "^9.1.1",
4444
"twilio": "^3.63.1",
45-
"twilio-video": "^2.15.3",
45+
"twilio-video": "^2.17.0",
4646
"typescript": "^3.8.3"
4747
},
4848
"devDependencies": {

src/components/MenuBar/MenuBar.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ export default function MenuBar() {
9090
<ToggleVideoButton disabled={isReconnecting} />
9191
{!isSharingScreen && !isMobile && <ToggleScreenShareButton disabled={isReconnecting} />}
9292
{process.env.REACT_APP_DISABLE_TWILIO_CONVERSATIONS !== 'true' && <ToggleChatButton />}
93-
<Menu />
93+
<Hidden smDown>
94+
<Menu />
95+
</Hidden>
9496
</Grid>
9597
</Grid>
9698
<Hidden smDown>

src/components/ParticipantInfo/ParticipantInfo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const useStyles = makeStyles((theme: Theme) =>
3737
width: `${(theme.sidebarMobileHeight * 16) / 9}px`,
3838
marginRight: '8px',
3939
marginBottom: '0',
40-
fontSize: '10px',
40+
fontSize: '12px',
4141
paddingTop: `${theme.sidebarMobileHeight - 2}px`,
4242
},
4343
},

0 commit comments

Comments
 (0)