Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Fix bug where keywords couldn't be written
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Feb 3, 2023
1 parent 6fd4e78 commit 9fdf0ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fun BoxWithConstraintsScope.AddKeywordModal(
dismiss: () -> Unit,
onKeywordChanged: (String) -> Unit
) {
var modalKeyword by remember(id) { mutableStateOf(selectEndTextFieldValue(keyword)) }
var modalKeyword by remember { mutableStateOf(selectEndTextFieldValue(keyword)) }

IvyModal(
id = id,
Expand Down

0 comments on commit 9fdf0ca

Please sign in to comment.