From 648ac493541a60a3377e3905ef2c8f34ebd1c66b Mon Sep 17 00:00:00 2001
From: schroda <50052685+schroda@users.noreply.github.com>
Date: Sun, 5 May 2024 00:51:41 +0200
Subject: [PATCH] Move "retry" button below error message
---
src/components/util/EmptyView.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/util/EmptyView.tsx b/src/components/util/EmptyView.tsx
index 453e967b..073c510a 100644
--- a/src/components/util/EmptyView.tsx
+++ b/src/components/util/EmptyView.tsx
@@ -50,9 +50,9 @@ export function EmptyView({ message, messageExtra, retry, noFaces, sx }: EmptyVi
{errorFace}
)}
- {retry && }
{message}
{messageExtra}
+ {retry && }
);
}