mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
fix: Fix linting errors
This commit is contained in:
parent
011d2ca1df
commit
c044f06447
1 changed files with 6 additions and 5 deletions
|
@ -156,10 +156,11 @@ const Follows = () =>
|
|||
getCommunitiesListing("subscribed", UserService.Instance.myUserInfo?.follows);
|
||||
|
||||
const isPersonBlocked = (personRes: RequestState<GetPersonDetailsResponse>) =>
|
||||
personRes.state === "success" &&
|
||||
UserService.Instance.myUserInfo?.person_blocks.some(
|
||||
({ target: { id } }) => id === personRes.data.person_view.person.id,
|
||||
);
|
||||
(personRes.state === "success" &&
|
||||
UserService.Instance.myUserInfo?.person_blocks.some(
|
||||
({ target: { id } }) => id === personRes.data.person_view.person.id,
|
||||
)) ??
|
||||
false;
|
||||
|
||||
export class Profile extends Component<
|
||||
RouteComponentProps<{ username: string }>,
|
||||
|
@ -787,7 +788,7 @@ export class Profile extends Component<
|
|||
});
|
||||
if (res.state === "success") {
|
||||
updatePersonBlock(res.data);
|
||||
this.setState({ personBlocked: isPersonBlocked(res) });
|
||||
this.setState({ personBlocked: res.data.blocked });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue