Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ When running scripts, use `npx turbo`, not `npm`.

# Code style

- Always try to add proper typing, limit the use of `any`. If needed, ask first.
- Use $-suffix for variables storing Promises
- Use 危-suffix for variables storing Signals (MutableSignal, Signal,
DerivedSignal, etc)
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/get-started/zustand.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ collaborative experiences for your Zustand store.

- [@liveblocks/zustand API Reference](/docs/api-reference/liveblocks-zustand)
- [Zustand guides](/docs/guides?technologies=zustand)
- [How to use Liveblocks Presence with Zustand](/docs/guides/how-to-create-a-collaborative-to-do-list-with-react-zustand-and-liveblocks)
- [How to use Liveblocks Presence with Zustand](/docs/guides/how-to-use-liveblocks-presence-with-zustand)
- [How to use Liveblocks Storage with Zustand](/docs/guides/how-to-use-liveblocks-storage-with-zustand)

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ function App() {
}
```

[`@liveblocks/zustand`]: /docs/api-reference/liveblocks-zustand
[`room.history.undo`]: /docs/api-reference/liveblocks-client#Room.history.undo
[`room.history.redo`]: /docs/api-reference/liveblocks-client#Room.history.redo
[`room.history.pause`]: /docs/api-reference/liveblocks-client#Room.history.pause
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ room's storage from our server and patches your store. If this is the first time
you're entering a room, the storage will be initialized with the current value
in your Zustand state, typically your initial state.

[`@liveblocks/zustand`]: /docs/api-reference/liveblocks-zustand
[`room.history.undo`]: /docs/api-reference/liveblocks-client#Room.history.undo
[`room.history.redo`]: /docs/api-reference/liveblocks-client#Room.history.redo
[`room.history.pause`]: /docs/api-reference/liveblocks-client#Room.history.pause
Expand Down
Loading
Loading