Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: code
  • Loading branch information
mayuran-deriv committed Oct 21, 2025
commit 17bbeb10c470139163b0158bf76fbab4fb6fe8be
4 changes: 2 additions & 2 deletions src/javascript/app/pages/trade/initialization-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@
// Retry after delay
setTimeout(attemptCall, CONFIG.RETRY_DELAY);
} else {
if (is_connected){
is_connected &&

Check failure on line 86 in src/javascript/app/pages/trade/initialization-manager.js

View workflow job for this annotation

GitHub Actions / build_and_deploy_preview_link

Expected an assignment or function call and instead saw an expression

Check failure on line 86 in src/javascript/app/pages/trade/initialization-manager.js

View workflow job for this annotation

GitHub Actions / build_and_deploy_preview_link

Expected indentation of 24 spaces but found 22

Check failure on line 86 in src/javascript/app/pages/trade/initialization-manager.js

View workflow job for this annotation

GitHub Actions / Build and Test

Expected an assignment or function call and instead saw an expression

Check failure on line 86 in src/javascript/app/pages/trade/initialization-manager.js

View workflow job for this annotation

GitHub Actions / Build and Test

Expected indentation of 24 spaces but found 22
reject(new Error(`All ${maxAttempts} attempts failed for ${stepId}: ${error.message}`));
}

Check failure on line 88 in src/javascript/app/pages/trade/initialization-manager.js

View workflow job for this annotation

GitHub Actions / build_and_deploy_preview_link

Expected indentation of 20 spaces but found 22

Check failure on line 88 in src/javascript/app/pages/trade/initialization-manager.js

View workflow job for this annotation

GitHub Actions / Build and Test

Expected indentation of 20 spaces but found 22
}

}
};

Expand Down
Loading