File tree 1 file changed +7
-6
lines changed
site/src/modules/dashboard/Navbar
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -121,9 +121,10 @@ export const ProxyMenu: FC<ProxyMenuProps> = ({ proxyContextValue }) => {
121
121
// the descriptive text and will only have access to the latency options
122
122
autoFocus = { false }
123
123
>
124
- { proxyContextValue . proxies && proxyContextValue . proxies . length > 1 && (
125
- < >
124
+ { proxyContextValue . proxies &&
125
+ proxyContextValue . proxies . length > 1 && [
126
126
< div
127
+ key = "description"
127
128
css = { {
128
129
width : "100%" ,
129
130
maxWidth : "320px" ,
@@ -152,6 +153,7 @@ export const ProxyMenu: FC<ProxyMenuProps> = ({ proxyContextValue }) => {
152
153
color : theme . palette . text . secondary ,
153
154
lineHeight : "inherit" ,
154
155
marginTop : 0.5 ,
156
+ marginBottom : 0 ,
155
157
} }
156
158
>
157
159
Workspace proxies improve terminal and web app connections to
@@ -162,11 +164,10 @@ export const ProxyMenu: FC<ProxyMenuProps> = ({ proxyContextValue }) => {
162
164
connections. A region must be manually selected, otherwise the
163
165
default primary region will be used.
164
166
</ p >
165
- </ div >
167
+ </ div > ,
166
168
167
- < Divider />
168
- </ >
169
- ) }
169
+ < Divider key = "divider" /> ,
170
+ ] }
170
171
171
172
{ proxyContextValue . proxies &&
172
173
[ ...proxyContextValue . proxies ]
You can’t perform that action at this time.
0 commit comments