Avoids remembering edit lists that will never exist.

This commit is contained in:
Vitor Pamplona 2024-08-21 14:58:01 -04:00
parent ef96d296f8
commit 1aea7fbd03
2 changed files with 3 additions and 1 deletions

View File

@ -1014,7 +1014,7 @@ fun observeEdits(
accountViewModel: AccountViewModel,
): State<GenericLoadable<EditState>> {
if (baseNote.event !is TextNoteEvent) {
return remember { mutableStateOf(GenericLoadable.Empty()) }
return EmptyState
}
val editState =

View File

@ -223,6 +223,8 @@ fun RenderTextModificationEvent(
}
}
val EmptyState = mutableStateOf<GenericLoadable<EditState>>(GenericLoadable.Empty())
@Stable
class EditState {
private var modificationsList: List<Note> = persistentListOf()