fix: correct variable reference in goToPhotoPacks function

This commit is contained in:
alexsparkes
2026-02-03 12:03:17 +00:00
parent a9ab5d9651
commit e7ad7ba131

View File

@@ -149,7 +149,7 @@ const BackgroundOptions = memo(({ currentSubSection, onSubSectionChange, section
// Navigate to photo packs marketplace
const goToPhotoPacks = () => {
variables.updateHash('#discover/photo_packs');
updateHash('#discover/photo_packs');
const event = new window.Event('popstate');
window.dispatchEvent(event);
};