Skip to content
Merged
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
lint
  • Loading branch information
ffmcgee725 committed Nov 11, 2025
commit 764401808fee1d8cc3221e6a29cf6aadc61f87b0
2 changes: 1 addition & 1 deletion src/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let idCounter = Math.floor(Math.random() * MAX);
export const getUniqueId = (): number => {
idCounter = (idCounter + 1) % MAX;
return idCounter;
}
};

/**
* Detects if we're in a Chrome-like environment with extension support
Expand Down
Loading