Fixes issue with cache of disappearing User Zaps in Notifications

This commit is contained in:
Vitor Pamplona 2023-11-20 19:03:34 -05:00
parent 9acad8b3f5
commit 05e9a1ac3f

View File

@ -311,7 +311,7 @@ fun MapZaps(
mutableStateOf<ImmutableList<ZapAmountCommentNotification>>(persistentListOf()) mutableStateOf<ImmutableList<ZapAmountCommentNotification>>(persistentListOf())
} }
LaunchedEffect(key1 = Unit) { LaunchedEffect(key1 = zaps) {
accountViewModel.decryptAmountMessageInGroup(zaps) { accountViewModel.decryptAmountMessageInGroup(zaps) {
zapEvents = it zapEvents = it
} }