We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e5a89 commit 01c17d5Copy full SHA for 01c17d5
1 file changed
app/src/main/java/com/texthip/thip/ui/group/note/screen/GroupNoteCreateScreen.kt
@@ -42,7 +42,7 @@ fun GroupNoteCreateScreen() {
42
// Tooltip 위치 측정용 state
43
val iconCoordinates = remember { mutableStateOf<LayoutCoordinates?>(null) }
44
45
- var isEligible by rememberSaveable { mutableStateOf(false) } // TODO: 서버 데이터?
+ var isEligible by rememberSaveable { mutableStateOf(true) } // TODO: 서버 데이터?
46
47
Box(
48
modifier = Modifier.fillMaxSize()
@@ -92,7 +92,7 @@ fun GroupNoteCreateScreen() {
92
PopupModal(
93
text = stringResource(R.string.condition_of_general_review),
94
arrowPosition = ArrowPosition.RIGHT,
95
- isEligible = false,
+ isEligible = isEligible,
96
onClose = { showTooltip = false }
97
)
98
}
0 commit comments