Skip to content

Commit

Permalink
Merge branch 'bugfix/fix-additional-decode-uri-component-not-necessar…
Browse files Browse the repository at this point in the history
…y' into q/1.0
  • Loading branch information
bert-e committed Jun 19, 2023
2 parents 42a275b + 1b71ef5 commit 626a9b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/tabsv2/Tabsv2.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function Tabs({
if (
!(
queryURL.has(key) &&
decodeURIComponent(queryURL.get(key) || '') === query[key]
queryURL.get(key) === query[key]
)
)
return false;
Expand Down

0 comments on commit 626a9b8

Please sign in to comment.