Skip to content

Commit

Permalink
fix : text, suffixLabel 기본값 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Apr 9, 2024
1 parent b270a38 commit 86aea11
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ import com.yourssu.design.system.compose.base.YdsText

@Composable
fun SuffixTextField(
text: String = "",
text: String,
modifier: Modifier = Modifier,
isError: Boolean = false,
isEnabled: Boolean = true,
placeHolder: String = "",
suffixLabel: String = "",
suffixLabel: String,
hintText: String = "",
onValueChange: (value: String) -> Unit,
keyboardOptions: KeyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Text),
Expand Down

0 comments on commit 86aea11

Please sign in to comment.