fix: playbacks && profile picture
This commit is contained in:
@@ -321,7 +321,12 @@ const Profile = () => {
|
||||
});
|
||||
|
||||
const displayedProjects = isSelf ? selfProjects : otherUserProjects;
|
||||
const displayedPlaybacks = isSelf ? selfPlaybacks : [];
|
||||
const displayedPlaybacksSource = isSelf
|
||||
? selfPlaybacks
|
||||
: otherUserProjects;
|
||||
const displayedPlaybacks = Array.isArray(displayedPlaybacksSource)
|
||||
? displayedPlaybacksSource.filter((project) => project?.playbackUrl)
|
||||
: [];
|
||||
|
||||
return (
|
||||
<Page
|
||||
|
||||
Reference in New Issue
Block a user