You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@saurabhhhcodes you currently have 128 open pull requests on this repository. 126 of them share the identical title "fix: resolve 4 bugs in devtrack" and contain the same changes. That is 61% of DevTrack's entire open PR queue from one account.
This is the third wave. The same changes were already closed with detailed explanations:
URLSearchParams.get() accepts one argument. This is a type error that fails the build, and parseInt already had its radix correctly as its own second argument. It has been explained to you four times.
What happens now: all 128 are being closed except #3237, which is genuine work and will get a real review.
What you need to do to keep contributing here:
Stop opening bulk/automated PRs. One PR per change.
Run pnpm type-check && pnpm test locally and confirm they pass before opening anything.
Read the review feedback before resubmitting — re-opening a closed change unchanged is spam.
Your #3213 and #3214 were good work and were merged, so you're clearly capable of contributing properly. Continued bulk submissions will result in interaction limits being applied to this repository.
Closing as part of a bulk-spam cleanup. See the warning on #3490.
This PR is one of 126 open pull requests with the identical title "fix: resolve 4 bugs in devtrack" from the same account, containing the same changes — which have already been closed with explanations on 2026-07-29, 2026-07-31 and again today.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR fixes real bugs found in the codebase:
Promise.all: an unhandled rejection in any input promise previously crashed silently.isNaNwithNumber.isNaN: the global version coerces its argument, soisNaN('1')returns false whileNumber.isNaNis strict.parseInt: without10, strings like'0x1F'or'08'parse in unintended bases.Type of Change
How Has This Been Tested?
Checklist
Related Issue
Ref: #3489