mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +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 }) {
|
||||
const { activeTab, setActiveTab } = useContext(TabContext);
|
||||
|
||||
const matchesTab = decodeURI(activeTab) === slugify(tab);
|
||||
const matchesTab = decodeURIComponent(activeTab) === slugify(tab);
|
||||
|
||||
return (
|
||||
<li
|
||||
|
Loading…
x
Reference in New Issue
Block a user