From 612e0f29ecc8830b3f515debba150b8692e9f7f0 Mon Sep 17 00:00:00 2001 From: none23 Date: Sun, 9 Aug 2026 18:46:48 +0400 Subject: [PATCH] Fix transient artifact not-found state --- client/index.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/client/index.tsx b/client/index.tsx index 4af503d..288addd 100644 --- a/client/index.tsx +++ b/client/index.tsx @@ -657,6 +657,9 @@ function ArtifactFrame({ slug }: { slug: string }) { return
Opening artifact…
; } if (artifact === null) { + if (auth.isLoading) { + return
Opening artifact…
; + } if (auth.isGuest) { return ; } @@ -674,12 +677,7 @@ function ArtifactFrame({ slug }: { slug: string }) { ); } - if ( - accessState === "accepting" || - accessState === "accepted" || - accessBootstrap.state === "claiming" || - (accessBootstrap.state === "claimed" && accessState === "idle") - ) { + if (accessState !== "denied") { return
Verifying shared access…
; } return (