Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c64d9f2

Browse files
committedMar 26, 2024·
Make hintsToExclude case insensitive
1 parent 9af3f76 commit c64d9f2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/background/hints/hintsAllocator.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ async function getEmptyStack(tabId: number): Promise<HintsStack> {
3232
(hint) =>
3333
!keysToExclude.has(hint[0]!) &&
3434
!hintsToExclude
35+
.toLowerCase()
3536
.split(/[, ]/)
3637
.filter((string) => string)
3738
.map((string) => string.trim())

0 commit comments

Comments
 (0)
Please sign in to comment.