Skip to content

Commit 1eb4875

Browse files
committed
Fix silly error in progress messages.
1 parent af1bcb3 commit 1eb4875

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/src/routes/devices.$id.settings.general.update.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,11 @@ function UpdatingDeviceState({
232232
if (!otaState.metadataFetchedAt) {
233233
return m.general_update_status_fetching();
234234
} else if (!downloadFinishedAt) {
235-
return m.general_update_status_downloading({ update_type });
235+
return m.general_update_status_downloading({ update_type: update_type() });
236236
} else if (!verifiedAt) {
237-
return m.general_update_status_verifying({ update_type });
237+
return m.general_update_status_verifying({ update_type: update_type() });
238238
} else if (!updatedAt) {
239-
return m.general_update_status_installing({ update_type });
239+
return m.general_update_status_installing({ update_type: update_type() });
240240
} else {
241241
return m.general_update_status_awaiting_reboot();
242242
}

0 commit comments

Comments
 (0)