Mutate with Update
// ❌ BAD — read/modify/write can lose concurrent updates state.value = state.value.copy(selectedId = id) // ✅ GOOD — atomic transform from latest state state.update { current - current.copy(selectedId = id) }
Prompt text
Original English text. Replace placeholders with your own details.
Source & attribution
Awesome Prompts · Awesome Prompts
Source-listed license: GPL-3.0. Prompt text is preserved; titles and previews may be shortened for display. Source examples are not NexGateHub test results.