feature/IO-3000-messaging-sockets-migrations2 -

- Checkpoint, archiving works, cannot unarchive yet

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-11-21 13:23:28 -08:00
parent e734da7adc
commit 1cdd905037
4 changed files with 35 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ export default function ChatConversationComponent({
}) {
const [loading, error] = subState;
if (conversation?.archived) return null;
if (loading) return <LoadingSkeleton />;
if (error) return <AlertComponent message={error.message} type="error" />;