this includes fix for Resync button doesn't do anything

This commit is contained in:
Nuwan 2023-02-24 17:23:19 +05:30
parent 359ccfe431
commit aa3ac642da
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@
async function newSession() {
inputs = null;
for(const [stepInfo, stepNumber] of Object.entries(STEPS)) {
for(const [stepNumber, stepInfo] of Object.entries(STEPS)) {
if(stepInfo.newSession) {
await stepInfo.newSession.call(stepInfo);
}