From 9278822088d212c9bee6a40a6a8b773bc482242d Mon Sep 17 00:00:00 2001
From: Patroll <6214736+P4tr0ll@users.noreply.github.com>
Date: Wed, 4 Oct 2023 19:31:43 +0200
Subject: Fix invite codes flash on desktop, use loading placeholder (#1591)
* Fix invite codes flashing untrue value before loaded
* Add loading placeholder for right nav invites
---
src/view/com/modals/InviteCodes.tsx | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
(limited to 'src/view/com/modals/InviteCodes.tsx')
diff --git a/src/view/com/modals/InviteCodes.tsx b/src/view/com/modals/InviteCodes.tsx
index 09cfd4de7..0cb0c56aa 100644
--- a/src/view/com/modals/InviteCodes.tsx
+++ b/src/view/com/modals/InviteCodes.tsx
@@ -26,6 +26,33 @@ export function Component({}: {}) {
store.shell.closeModal()
}, [store])
+ if (store.me.invites === null) {
+ return (
+
+
+ Error
+
+
+ An error occurred while loading invite codes.
+
+
+
+
+
+
+ )
+ }
+
if (store.me.invites.length === 0) {
return (
--
cgit 1.4.1