From 7b484fc8e1f146fd429b5ea50ea82a9ba9e5f79b Mon Sep 17 00:00:00 2001 From: Thomas Ricouard Date: Thu, 28 Dec 2023 22:18:13 +0100 Subject: [PATCH] Add loading indicator on profile --- Packages/Account/Sources/Account/AccountDetailHeaderView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Packages/Account/Sources/Account/AccountDetailHeaderView.swift b/Packages/Account/Sources/Account/AccountDetailHeaderView.swift index dc8ef312..0faf78b8 100644 --- a/Packages/Account/Sources/Account/AccountDetailHeaderView.swift +++ b/Packages/Account/Sources/Account/AccountDetailHeaderView.swift @@ -227,6 +227,8 @@ struct AccountDetailHeaderView: View { viewModel.relationship = relationship })) } + } else if !viewModel.isCurrentUser { + ProgressView() } }