Skip to content

Commit

Permalink
作業保存
Browse files Browse the repository at this point in the history
  • Loading branch information
AyumuAkimoto committed Mar 29, 2024
1 parent 7cac4db commit a617623
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ const Bio = styled(Typography)`

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

export default function FFProfileCard({
name,
userName,
username,
profileImageUrl,
bio,
id,
Expand All @@ -94,7 +94,7 @@ export default function FFProfileCard({
<HFlexS>
<VFlex>
<DisplayName>{name}</DisplayName>
<UserName>@{userName}</UserName>
<UserName>@{username}</UserName>
</VFlex>
{/* フォローされてるか表示 */}
{/* <FollowedDisplay/> */}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function FollowList({ follows }: Props) {
<FFProfileCard

Check failure on line 39 in src/app/(menu)/(public)/[username]/_components/layouts/FollowList.tsx

View workflow job for this annotation

GitHub Actions / tests

Type '{ key: number; name: string; username: string; bio: string; profileImageUrl: string; id: number; }' is missing the following properties from type 'UserWithFollows': createdAt, isPrivate, url, verified, isRemote
key={number}
name={User.name}
userName={User.username}
username={User.username}
bio={User.bio}
profileImageUrl={User.profileImageUrl}
id={User.id}
Expand Down

0 comments on commit a617623

Please sign in to comment.