From faaa42426acd97a6791bdfc29ae0911f1fd1a9db Mon Sep 17 00:00:00 2001 From: Spence Pope Date: Mon, 24 Aug 2026 09:34:45 -0400 Subject: [PATCH] [APP-2922] Fix cached starter pack navigation (#11531) --- src/screens/StarterPack/StarterPackScreen.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 8115f15287..97f1f77cf9 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -146,7 +146,10 @@ export function StarterPackScreenInner({ const isValid = starterPack && (starterPack.list || starterPack?.creator?.did === currentAccount?.did) && - bsky.matches(app.bsky.graph.defs.starterPackView, starterPack) && + // Cards may precache a synthetic full view while navigating. Its list CID + // is intentionally empty until the server response replaces it, so use + // the trusted app-view discriminator here instead of strict validation. + bsky.isType(app.bsky.graph.defs.starterPackView, starterPack) && bsky.matches(app.bsky.graph.starterpack, starterPack.record) if (!did || !starterPack || !isValid || !moderationOpts) {