From e7ad7ba1311ba5bd96e5a69076124e3466e344bf Mon Sep 17 00:00:00 2001 From: alexsparkes Date: Tue, 3 Feb 2026 12:03:17 +0000 Subject: [PATCH] fix: correct variable reference in goToPhotoPacks function --- src/features/background/options/BackgroundOptions.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/background/options/BackgroundOptions.jsx b/src/features/background/options/BackgroundOptions.jsx index 37c53b4b..fbe76b02 100644 --- a/src/features/background/options/BackgroundOptions.jsx +++ b/src/features/background/options/BackgroundOptions.jsx @@ -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); };