Fix: correctly decode tab names with special chars

This commit is contained in:
shamoon 2024-07-30 20:55:37 -07:00
parent ed928bfa25
commit 00a251f713

View File

@ -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