From 5ac3b34916f05acb907be2f9deed7880a580862f Mon Sep 17 00:00:00 2001 From: simoleo89 <11816867+simoleo89@users.noreply.github.com> Date: Mon, 15 Jun 2026 20:28:39 +0200 Subject: [PATCH] fix(purse): Join/Entra opens the HC Center (habboUI/open/hccenter) The Entra button pointed at catalog/open/ (a catalog page that often doesn't exist); open the real HC Center view instead. --- src/components/purse/PurseView.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/purse/PurseView.tsx b/src/components/purse/PurseView.tsx index 1ac10ef..60786fe 100644 --- a/src/components/purse/PurseView.tsx +++ b/src/components/purse/PurseView.tsx @@ -55,9 +55,7 @@ export const PurseView: FC<{}> = props => const openClub = useCallback((event: React.MouseEvent) => { event.stopPropagation(); - - const page = GetConfigurationValue('hc.buy_hc', 'habbo_club'); - CreateLinkEvent('catalog/open/' + page); + CreateLinkEvent('habboUI/open/hccenter'); }, []); const openEarnings = useCallback((event: React.MouseEvent) =>