Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Merged
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
4 changes: 2 additions & 2 deletions www/src/pages/docs/50_StoreMapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ val storedPerson = storeOf<Person?>(null, job = Job())
storedPerson.data.render { person ->
if (person != null) { // Avoid NullPointerExceptions reading or updating storedPerson
// by manually creating a safe scope ensuring that person is not null
val storedName = customerStore.map(Person.name())
val storedName = storedPerson.map(Person.name())
input {
value(storedName.data)
changes.values() handledBy storedName.update
Expand Down Expand Up @@ -1035,4 +1035,4 @@ straight-forward manner.

For real world application we encourage you to apply better [structure](/docs/render/#structure-ui) and divide the UI
into smaller and reusable parts, of course.
:::
:::
Loading