From 024bba3038b10ccd325281b6e0e3241e27e95751 Mon Sep 17 00:00:00 2001 From: Kevin Cook Date: Mon, 26 Feb 2024 09:24:00 -0700 Subject: [PATCH] Initial commit --- src/pages/ProfilePage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ProfilePage.js b/src/pages/ProfilePage.js index 68bd3d76888d..39e086b6370d 100755 --- a/src/pages/ProfilePage.js +++ b/src/pages/ProfilePage.js @@ -138,10 +138,10 @@ function ProfilePage(props) { // eslint-disable-next-line rulesdir/prefer-early-return useEffect(() => { - if (ValidationUtils.isValidAccountRoute(accountID) && !hasMinimumDetails) { + if (ValidationUtils.isValidAccountRoute(accountID)) { PersonalDetails.openPublicProfilePage(accountID); } - }, [accountID, hasMinimumDetails]); + }, [accountID]); return (