Skip to content

Commit

Permalink
Remove outdated parts of the documentation
Browse files Browse the repository at this point in the history
Co-authored-by: Oliver Lazoroski <[email protected]>
  • Loading branch information
arnautov-anton and oliverlaz authored Oct 28, 2024
1 parent 8a2dcef commit fb2a551
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docusaurus/docs/React/guides/sdk-state-management.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ Selectors are functions provided by integrators that run whenever state object c

```ts
const selector = (nextValue: ThreadManagerState) => ({
unreadThreadsCount: nextValue.unreadThreadsCount, // <-- changes often
active: nextValue.active, // <-- changes less often
lastConnectionDownAt: nextvalue.lastConnectionDownAt, // <-- changes rarely
unreadThreadsCount: nextValue.unreadThreadsCount,
active: nextValue.active,
lastConnectionDownAt: nextvalue.lastConnectionDownAt,
});
```

Expand Down

0 comments on commit fb2a551

Please sign in to comment.