Merged
Conversation
The Counter component was concatenating counter, unitsText, and closingText without spaces, resulting in text like "3565Tokensfound" instead of "3565 Tokens found".
The deep link watcher was re-processing the same initial URL when the processLink callback reference changed during navigation. This caused a loop where users were sent back to the start of the Send flow repeatedly. Added URL-based tracking using a Set ref to prevent re-processing the same URL. Also simplified ActionHandler and ClaimActionHandler to use the same consistent Set-based pattern instead of fragile object reference comparisons.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
rahulnr7
approved these changes
Feb 4, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Note
Medium Risk
Changes deduplication/processing guards for deep links and pending actions, which could affect whether some link-triggered flows run or get skipped. Scope is limited to link handling and a small UI text formatting tweak.
Overview
Tightens deep-link/action deduplication to avoid repeated processing:
useDeepLinkWatchernow tracks and ignores already-seen initial URLs (including the post-login recheck), andClaimActionHandlerprevents re-running the same claim (url:code) on screen refocus.Simplifies
ActionHandler’s processed-action tracking from an action-instanceMapto an actionIdSet, relying on actionId-based gating/clearing rather than object-reference comparisons. Also adjustsCounterrendering to prepend spaces beforeunitsText/closingTextfor consistent spacing.Written by Cursor Bugbot for commit a6deabe. This will update automatically on new commits. Configure here.