From 29aba40a4be34304a3567c96b38a4ff1d70058d1 Mon Sep 17 00:00:00 2001 From: fperex <270788582+fperex@users.noreply.github.com> Date: Tue, 18 Aug 2026 11:50:59 -0400 Subject: [PATCH] Fix collaborative state link on Actors page Point to /actors/docs/design-patterns instead of the removed sharing-and-joining-state page. --- src/pages/actors.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/actors.astro b/src/pages/actors.astro index 8ba2956..9f106cb 100644 --- a/src/pages/actors.astro +++ b/src/pages/actors.astro @@ -43,7 +43,7 @@ const useCases = [ { title: 'Collaborative state', body: 'One Actor per document or workspace. State lives next to compute, so concurrent edits stay consistent without cache-invalidation gymnastics.', - href: '/actors/docs/sharing-and-joining-state', + href: '/actors/docs/design-patterns', }, { title: 'Durable workflows',