Remove unused refreshProfile prop from ProfileCarousel component.

This commit is contained in:
MartinBraquet
2026-05-10 14:27:00 +02:00
parent 9bb7643db8
commit 5fee7a3686

View File

@@ -10,7 +10,7 @@ import {isVideo} from 'web/lib/firebase/storage'
import {SignUpButton} from './nav/sidebar'
export default function ProfileCarousel(props: {profile: Profile; refreshProfile: () => void}) {
export default function ProfileCarousel(props: {profile: Profile}) {
const {profile} = props
const photoNums = profile.photo_urls ? profile.photo_urls.length : 0