File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/launcher/features/apps Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ release the new version.
12
12
### Changed
13
13
14
14
- #914 : Show the devices actually supported by the current Quick Start app.
15
+ - #935 : Updated and corrected dialog styles from
16
+ [ shared v146] ( https://github.com/NordicSemiconductor/pc-nrfconnect-shared/releases/tag/v146 ) .
17
+ - #935 : Better message when installing downloadable apps fails.
15
18
16
19
## 4.3.0
17
20
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import {
21
21
isInstalled ,
22
22
LaunchableApp ,
23
23
} from '../../../ipc/apps' ;
24
+ import { cleanIpcErrorMessage } from '../../../ipc/error' ;
24
25
import type { AppThunk } from '../../store' ;
25
26
import appCompatibilityWarning from '../../util/appCompatibilityWarning' ;
26
27
import { handleSourcesWithErrors } from '../sources/sourcesEffects' ;
@@ -149,7 +150,9 @@ const install =
149
150
} catch ( error ) {
150
151
dispatch (
151
152
ErrorDialogActions . showDialog (
152
- `Unable to install: ${ ( error as Error ) . message } `
153
+ `Unable to install downloadable app.` ,
154
+ undefined ,
155
+ cleanIpcErrorMessage ( describeError ( error ) )
153
156
)
154
157
) ;
155
158
}
You can’t perform that action at this time.
0 commit comments