Is it safe to be doing ```Snapshot.withMutableSnap...
# compose
s
Is it safe to be doing
Copy code
Snapshot.withMutableSnapshot {
 ... stuff
 Snapshot.withMutableSnapshot {
  ... more stuff
 }
}
My question isn't because I want to write code this way, but there are some functions that wrap their content with
withMutableSnapshot
, but may also call other functions that are also wrapping their content with
withMutableSnapshot
👌 2
f
I think this is the same as the code in the "Nested snapshots" section of Zach's Introduction to the Compose Snapshot System article
s
That looks perfect, thanks!