@@ -9,7 +9,6 @@ import { MONOSPACE_FONT_FAMILY } from "theme/constants"
9
9
import Tooltip from "@material-ui/core/Tooltip"
10
10
import { Link as RouterLink } from "react-router-dom"
11
11
import Link from "@material-ui/core/Link"
12
- import InfoIcon from "@material-ui/icons/InfoOutlined"
13
12
import { VSCodeIcon } from "components/Icons/VSCodeIcon"
14
13
import DownloadIcon from "@material-ui/icons/CloudDownload"
15
14
import UploadIcon from "@material-ui/icons/CloudUpload"
@@ -118,21 +117,18 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
118
117
</ div >
119
118
< div className = { styles . group } >
120
119
< Tooltip title = { `Activity in the last ~${ aggregatedMinutes } minutes` } >
121
- < div className = { styles . category } >
122
- Transmission
123
- < InfoIcon />
124
- </ div >
120
+ < div className = { styles . category } > Transmission</ div >
125
121
</ Tooltip >
126
122
127
123
< div className = { styles . values } >
128
- < Tooltip title = "Data sent through workspace workspaces" >
124
+ < Tooltip title = "Data sent to workspaces" >
129
125
< div className = { styles . value } >
130
126
< DownloadIcon />
131
127
{ stats ? prettyBytes ( stats . workspaces . rx_bytes ) : "-" }
132
128
</ div >
133
129
</ Tooltip >
134
130
< ValueSeparator />
135
- < Tooltip title = "Data sent from workspace connections " >
131
+ < Tooltip title = "Data sent from workspaces " >
136
132
< div className = { styles . value } >
137
133
< UploadIcon />
138
134
{ stats ? prettyBytes ( stats . workspaces . tx_bytes ) : "-" }
@@ -287,12 +283,6 @@ const useStyles = makeStyles((theme) => ({
287
283
category : {
288
284
marginRight : theme . spacing ( 2 ) ,
289
285
color : theme . palette . text . hint ,
290
-
291
- "& svg" : {
292
- width : 12 ,
293
- height : 12 ,
294
- marginBottom : 2 ,
295
- } ,
296
286
} ,
297
287
values : {
298
288
display : "flex" ,
0 commit comments