From 5fee7a3686f7a399b676d7169af3edddae878120 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 10 May 2026 14:27:00 +0200 Subject: [PATCH] Remove unused `refreshProfile` prop from ProfileCarousel component. --- web/components/profile-carousel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/profile-carousel.tsx b/web/components/profile-carousel.tsx index b357e164..51e8a8b7 100644 --- a/web/components/profile-carousel.tsx +++ b/web/components/profile-carousel.tsx @@ -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