We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 376103f + b152afc commit 45ef47aCopy full SHA for 45ef47a
frontend/src/pages/FestivalPage/components/BoothMapSection/BoothMapSection.tsx
@@ -665,15 +665,12 @@ const BoothMapSection = () => {
665
cursor: booth.link ? 'pointer' : 'default',
666
}}
667
onClick={() => {
668
+ if (isInAppWebView()) return;
669
if (booth.link) {
670
trackEvent(USER_EVENT.FESTIVAL_BOOTH_CLICKED, {
671
booth: booth.name,
672
});
- if (isInAppWebView()) {
673
- navigate(`/webview/club/${booth.link}`);
674
- } else {
675
- navigate(`/clubDetail/${booth.link}`);
676
- }
+ navigate(`/clubDetail/${booth.link}`);
677
}
678
679
>
0 commit comments