Skip to content

Commit f6e0a95

Browse files
committed
fix: remove deployment bar info icon and adjust language
Re @bpmct's feedback
1 parent 62a64d5 commit f6e0a95

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

site/src/components/DeploymentBanner/DeploymentBannerView.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { MONOSPACE_FONT_FAMILY } from "theme/constants"
99
import Tooltip from "@material-ui/core/Tooltip"
1010
import { Link as RouterLink } from "react-router-dom"
1111
import Link from "@material-ui/core/Link"
12-
import InfoIcon from "@material-ui/icons/InfoOutlined"
1312
import { VSCodeIcon } from "components/Icons/VSCodeIcon"
1413
import DownloadIcon from "@material-ui/icons/CloudDownload"
1514
import UploadIcon from "@material-ui/icons/CloudUpload"
@@ -120,19 +119,18 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
120119
<Tooltip title={`Activity in the last ~${aggregatedMinutes} minutes`}>
121120
<div className={styles.category}>
122121
Transmission
123-
<InfoIcon />
124122
</div>
125123
</Tooltip>
126124

127125
<div className={styles.values}>
128-
<Tooltip title="Data sent through workspace workspaces">
126+
<Tooltip title="Data sent to workspaces">
129127
<div className={styles.value}>
130128
<DownloadIcon />
131129
{stats ? prettyBytes(stats.workspaces.rx_bytes) : "-"}
132130
</div>
133131
</Tooltip>
134132
<ValueSeparator />
135-
<Tooltip title="Data sent from workspace connections">
133+
<Tooltip title="Data sent from workspaces">
136134
<div className={styles.value}>
137135
<UploadIcon />
138136
{stats ? prettyBytes(stats.workspaces.tx_bytes) : "-"}
@@ -287,12 +285,6 @@ const useStyles = makeStyles((theme) => ({
287285
category: {
288286
marginRight: theme.spacing(2),
289287
color: theme.palette.text.hint,
290-
291-
"& svg": {
292-
width: 12,
293-
height: 12,
294-
marginBottom: 2,
295-
},
296288
},
297289
values: {
298290
display: "flex",

0 commit comments

Comments
 (0)