We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d43341 + 21403d4 commit 160d094Copy full SHA for 160d094
1 file changed
www/src/content/docs/store.mdx
@@ -64,7 +64,7 @@ const tagsStore = documentStore.select("meta").select("tags");
64
65
function Document() {
66
// Update your UI with the store's current state
67
- const { title, tags } = useStoreValue(documentStore);
+ const { title, meta: { tags } } = useStoreValue(documentStore);
68
return (
69
<div>
70
{title} {tags.join(", ")}
0 commit comments