From 06e41167d05a26befb14b9742f4fc4ef3833d35d Mon Sep 17 00:00:00 2001 From: Aryan Goharzad Date: Fri, 20 Jan 2023 14:43:28 -0500 Subject: Lints some errors and warnings (#76) --- src/view/com/util/UserInfoText.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/view/com/util/UserInfoText.tsx') diff --git a/src/view/com/util/UserInfoText.tsx b/src/view/com/util/UserInfoText.tsx index db6696a9b..5cdfd1345 100644 --- a/src/view/com/util/UserInfoText.tsx +++ b/src/view/com/util/UserInfoText.tsx @@ -40,11 +40,15 @@ export function UserInfoText({ let aborted = false store.profiles.getProfile(did).then( v => { - if (aborted) return + if (aborted) { + return + } setProfile(v.data) }, _err => { - if (aborted) return + if (aborted) { + return + } setFailed(true) }, ) -- cgit 1.4.1