From 5daba498a5b2f2282ea562f1db003c47cef2f2d0 Mon Sep 17 00:00:00 2001 From: SleeplessOne1917 Date: Sun, 7 Jan 2024 12:10:26 -0500 Subject: [PATCH] Run prettier --- lemmy-translations | 2 +- src/shared/components/post/post-listing.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lemmy-translations b/lemmy-translations index 15815aea..5d45389e 160000 --- a/lemmy-translations +++ b/lemmy-translations @@ -1 +1 @@ -Subproject commit 15815aea74fe97360afc03496b3ad62588649af0 +Subproject commit 5d45389ef4a12489e80b44af4443b29ca6161293 diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index f99e6a77..4bef4547 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -128,10 +128,10 @@ export class PostListing extends Component { 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), }); } }