Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 친구 페이지 > 팔로잉 리스트의 유저 이모지가 제대로 출력되지 않던 오류 수정 #154

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/friend/ui/friend/FriendFollowingItem.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import decodeEmojiBase64 from '@/utils/decodeEmojiBase64';
import UnFollowButton from '@/friend/ui/buttons/UnFollowButton';
import FriendItemLayout from '@/friend/ui/friend/layout/FriendItemLayout';
import FollowButton from '@/friend/ui/buttons/FollowButton';
Expand All @@ -20,7 +19,7 @@ const FriendFollowingItem = ({
return (
<FriendItemLayout
name={name}
emoji={profileEmoji && decodeEmojiBase64(profileEmoji)}
emoji={profileEmoji && profileEmoji}
id={id}
button={
isFollowing ? (
Expand Down
Loading