We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e834ca9 commit 9be3328Copy full SHA for 9be3328
src/hooks/download-hooks.tsx
@@ -52,10 +52,10 @@ export class DownloadProjectActions {
52
this.state.usbDevice &&
53
this.state.usbDevice.status === UsbConnectionStatus.CONNECTED
54
) {
55
- const newState = {
+ const newState: DownloadState = {
56
...this.state,
57
step: DownloadStep.FlashingInProgress,
58
- project: download,
+ hex: download,
59
};
60
this.setState(newState);
61
await this.flashMicrobit(newState, {
0 commit comments