File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export default ({}: OnboardingProps) => {
136
136
) }
137
137
</ Typography >
138
138
< div className = "onboarding-cards" >
139
- { ! isWindows && (
139
+ { isWindows && (
140
140
< Card variant = "soft" >
141
141
< Typography level = "h3" > Windows Subsystem for Linux</ Typography >
142
142
< Typography level = "body-sm" >
@@ -182,8 +182,8 @@ export default ({}: OnboardingProps) => {
182
182
</ >
183
183
) }
184
184
</ Typography >
185
- { hasWSL && < Divider /> }
186
- { hasWSL && (
185
+ { ! hasWSL && < Divider /> }
186
+ { ! hasWSL && (
187
187
< Button
188
188
onClick = { async ( ) => {
189
189
try {
@@ -198,7 +198,7 @@ export default ({}: OnboardingProps) => {
198
198
Install WSL
199
199
</ Button >
200
200
) }
201
- { hasWSL && (
201
+ { ! hasWSL && (
202
202
< Button
203
203
onClick = { async ( ) => {
204
204
try {
You can’t perform that action at this time.
0 commit comments