mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00
Fix: correctly decode tab names with special chars (#3797)
This commit is contained in:
parent
ed928bfa25
commit
9484a9ff56
@ -14,7 +14,7 @@ export function slugifyAndEncode(tabName) {
|
|||||||
export default function Tab({ tab }) {
|
export default function Tab({ tab }) {
|
||||||
const { activeTab, setActiveTab } = useContext(TabContext);
|
const { activeTab, setActiveTab } = useContext(TabContext);
|
||||||
|
|
||||||
const matchesTab = decodeURI(activeTab) === slugify(tab);
|
const matchesTab = decodeURIComponent(activeTab) === slugify(tab);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<li
|
<li
|
||||||
|
Loading…
x
Reference in New Issue
Block a user