diff --git a/www/src/content/docs/store.mdx b/www/src/content/docs/store.mdx index 3211ddc..65eff28 100644 --- a/www/src/content/docs/store.mdx +++ b/www/src/content/docs/store.mdx @@ -64,7 +64,7 @@ const tagsStore = documentStore.select("meta").select("tags"); function Document() { // Update your UI with the store's current state - const { title, tags } = useStoreValue(documentStore); + const { title, meta: { tags } } = useStoreValue(documentStore); return (
{title} {tags.join(", ")}