diff --git a/src/components/Me.tsx b/src/components/Me.tsx index 6de6f949..13a18d89 100644 --- a/src/components/Me.tsx +++ b/src/components/Me.tsx @@ -319,7 +319,7 @@ const Me: React.FC = ({ // Sync myHighlights from controller when viewing own profile useEffect(() => { - if (isOwnProfile && myHighlights.length > 0) { + if (isOwnProfile) { setHighlights(myHighlights) } }, [isOwnProfile, myHighlights]) @@ -457,7 +457,7 @@ const Me: React.FC = ({ ) } - return highlights.length === 0 && !loading ? ( + return highlights.length === 0 && !loading && !(isOwnProfile && myHighlightsLoading) ? (
No highlights yet.