hookehuyr

fix(ProfilePage): 修复社区菜单项点击跳转问题

社区菜单项点击时,使用 `window.location.href` 直接跳转到外部链接,避免路由错误
...@@ -238,7 +238,11 @@ const handleLogout = () => { ...@@ -238,7 +238,11 @@ const handleLogout = () => {
238 238
239 // Handle menu item click 239 // Handle menu item click
240 const handleMenuClick = (path) => { 240 const handleMenuClick = (path) => {
241 - router.push(path); 241 + if (path === '/profile/community') {
242 + window.location.href = 'https://community.mlaj.com';
243 + } else {
244 + router.push(path);
245 + }
242 }; 246 };
243 247
244 // Handle image error 248 // Handle image error
......