Fixes wrong display of original and forked notes

This commit is contained in:
Vitor Pamplona 2024-05-14 12:40:29 -04:00
parent 6e6a13c5bf
commit 9d02361d01

View File

@ -94,8 +94,8 @@ open class NewPostViewModel() : ViewModel() {
var account: Account? = null
var requiresNIP17: Boolean = false
var originalNote: Note? = null
var forkedFromNote: Note? = null
var originalNote: Note? by mutableStateOf<Note?>(null)
var forkedFromNote: Note? by mutableStateOf<Note?>(null)
var pTags by mutableStateOf<List<User>?>(null)
var eTags by mutableStateOf<List<Note>?>(null)