Run prettier

This commit is contained in:
SleeplessOne1917 2024-01-07 12:10:26 -05:00
parent 0f5c34da2b
commit 5daba498a5
2 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 15815aea74fe97360afc03496b3ad62588649af0
Subproject commit 5d45389ef4a12489e80b44af4443b29ca6161293

View file

@ -128,10 +128,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
componentDidMount(): void {
if (UserService.Instance.myUserInfo) {
const { auto_expand, blur_nsfw } = UserService.Instance.myUserInfo.local_user_view.local_user;
const { auto_expand, blur_nsfw } =
UserService.Instance.myUserInfo.local_user_view.local_user;
this.setState({
imageExpanded:
auto_expand && !(blur_nsfw && this.postView.post.nsfw),
imageExpanded: auto_expand && !(blur_nsfw && this.postView.post.nsfw),
});
}
}