File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -51,13 +51,15 @@ export const useAppLink = (
51
51
const openAppExternallyFailedTimeout = 500 ;
52
52
const openAppExternallyFailed = setTimeout ( ( ) => {
53
53
// Check if this is a JetBrains IDE app
54
- const isJetBrainsApp = app . url && (
55
- app . url . startsWith ( "jetbrains-gateway:" ) ||
56
- app . url . startsWith ( "jetbrains:" )
57
- ) ;
58
-
54
+ const isJetBrainsApp =
55
+ app . url &&
56
+ ( app . url . startsWith ( "jetbrains-gateway :" ) ||
57
+ app . url . startsWith ( "jetbrains:" ) ) ;
58
+
59
59
if ( isJetBrainsApp ) {
60
- displayError ( `To use ${ label } , you need to have JetBrains Toolbox installed.` ) ;
60
+ displayError (
61
+ `To use ${ label } , you need to have JetBrains Toolbox installed.` ,
62
+ ) ;
61
63
} else {
62
64
displayError ( `${ label } must be installed first.` ) ;
63
65
}
You can’t perform that action at this time.
0 commit comments