We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c1850 commit ca3f112Copy full SHA for ca3f112
1 file changed
src/ui/preact/update_component.tsx
@@ -330,13 +330,12 @@ export class UpdateComponent
330
error = selectResult.error;
331
}
332
if (error) {
333
- const errorMessage = `Update failed: ${error}`;
334
console.error(`update_component: update failed: ${error}`);
335
336
this.setState({
337
...this.state,
338
isUpdating: false,
339
- updateError: errorMessage,
+ updateError: `${error}`,
340
});
341
342
return;
0 commit comments