From 109b5a017c1cc6e56c31cf0d42d3ae48a5aa037e Mon Sep 17 00:00:00 2001 From: shmck Date: Wed, 20 May 2020 20:18:32 -0700 Subject: [PATCH] fix relaunch issue #344 Signed-off-by: shmck --- src/channel/state/Progress.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channel/state/Progress.ts b/src/channel/state/Progress.ts index 636e2531..691d52bf 100644 --- a/src/channel/state/Progress.ts +++ b/src/channel/state/Progress.ts @@ -40,7 +40,7 @@ class Progress { this.set(defaultValue) } public syncProgress = (progress: T.Progress): T.Progress => { - const next = { ...this.value, ...progress } + const next = { ...this.value, ...progress, complete: this.value.complete } return this.set(next) } public setStepComplete = (tutorial: TT.Tutorial, stepId: string): T.Progress => {