Skip to content

Commit

Permalink
detekt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Garzas committed Mar 21, 2024
1 parent 647db97 commit 4cdfb6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ fun ConversationScreen(
// set message composer input to edit mode when editMessage is not null from MessageDraft
LaunchedEffect(messageDraftViewModel.state.value.editMessageId) {
val compositionState = messageDraftViewModel.state.value
if(compositionState.editMessageId != null) {
if (compositionState.editMessageId != null) {
messageComposerStateHolder.toEdit(
messageId = compositionState.editMessageId,
editMessageText = compositionState.messageText,
Expand Down

0 comments on commit 4cdfb6b

Please sign in to comment.