Skip to content

Commit

Permalink
Fixed crash in edit feed text related to focus
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecowboy committed Sep 6, 2023
1 parent 49a7f65 commit ce759df
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,9 @@ fun EditFeedView(
) {
val dimens = LocalDimens.current

val (leftFocusRequester, rightFocusRequester) = createRefs()
val (leftFocusRequester, rightFocusRequester) = remember {
createRefs()
}

OkCancelWithContent(
onOk = {
Expand Down

0 comments on commit ce759df

Please sign in to comment.