@@ -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"
@@ -120,19 +119,18 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
120
119
< Tooltip title = { `Activity in the last ~${ aggregatedMinutes } minutes` } >
121
120
< div className = { styles . category } >
122
121
Transmission
123
- < InfoIcon />
124
122
</ div >
125
123
</ Tooltip >
126
124
127
125
< div className = { styles . values } >
128
- < Tooltip title = "Data sentthrough workspace workspaces" >
126
+ < Tooltip title = "Data sentto workspaces" >
129
127
< div className = { styles . value } >
130
128
< DownloadIcon />
131
129
{ stats ?prettyBytes ( stats . workspaces . rx_bytes ) :"-" }
132
130
</ div >
133
131
</ Tooltip >
134
132
< ValueSeparator />
135
- < Tooltip title = "Data sent fromworkspace connections " >
133
+ < Tooltip title = "Data sent fromworkspaces " >
136
134
< div className = { styles . value } >
137
135
< UploadIcon />
138
136
{ stats ?prettyBytes ( stats . workspaces . tx_bytes ) :"-" }
@@ -287,12 +285,6 @@ const useStyles = makeStyles((theme) => ({
287
285
category :{
288
286
marginRight :theme . spacing ( 2 ) ,
289
287
color :theme . palette . text . hint ,
290
-
291
- "& svg" :{
292
- width :12 ,
293
- height :12 ,
294
- marginBottom :2 ,
295
- } ,
296
288
} ,
297
289
values :{
298
290
display :"flex" ,