This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch scarf-pixel in repository https://gitbox.apache.org/repos/asf/superset.git
commit 925ef36d8f91d3302405bda80094f0bb4d701b51 Author: Evan Rusackas <[email protected]> AuthorDate: Thu Nov 30 12:08:58 2023 -0700 John ❤️ JS --- superset-frontend/src/features/home/RightMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/features/home/RightMenu.tsx b/superset-frontend/src/features/home/RightMenu.tsx index 48dec48cb4..a37214b66b 100644 --- a/superset-frontend/src/features/home/RightMenu.tsx +++ b/superset-frontend/src/features/home/RightMenu.tsx @@ -475,7 +475,7 @@ const RightMenu = ({ <Menu.ItemGroup key="user-section" title={t('User')}> {navbarRight.user_profile_url && ( <Menu.Item key="profile"> - <a href={navbarRight.user_profile_url}>{t('Profile')}</a> + <Link to={navbarRight.user_profile_url}>{t('Profile')}</Link> </Menu.Item> )} {navbarRight.user_info_url && (
