Skip to content

Commit

Permalink
Props修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takecchi committed Mar 29, 2024
1 parent a617623 commit 0209cc8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client';
import FollowButton from '@/app/(menu)/(public)/[username]/_components/elements/FollowButton';
import UserIcon from '@/app/(menu)/(public)/[username]/_components/elements/UserIcon';
import { UserWithFollows } from '@cuculus/cuculus-api';
import { Box, Typography, styled } from '@mui/material';

const UnselectableCard = styled('div')`
Expand Down Expand Up @@ -73,11 +72,12 @@ const Bio = styled(Typography)`
`;

type Props = {
id: number;
name: string;
username: string;
profileImageUrl: string;
bio: string;
} & UserWithFollows;
};

export default function FFProfileCard({
name,
Expand Down

0 comments on commit 0209cc8

Please sign in to comment.