Skip to content

Commit

Permalink
[chore] 코딩 컨벤션 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwon2724 committed Aug 30, 2024
1 parent 589e506 commit b83d022
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ fun AddLinkScreen(
inputText = url,
hintText = stringResource(id = R.string.placeholder_link),
onChangeText = inputUrl,
enable = enable,
enable = enable
)

Spacer(modifier = Modifier.height(24.dp))
Expand Down Expand Up @@ -273,7 +273,7 @@ fun AddLinkScreen(
hintText = stringResource(id = R.string.placeholder_memo),
onChangeText = inputMemo,
enable = enable,
isError = memo.length >= 100,
isError = memo.length >= 100
)

Spacer(modifier = Modifier.height(4.dp))
Expand All @@ -283,7 +283,7 @@ fun AddLinkScreen(
Text(
color = PokitTheme.colors.error,
text = "최대 100자까지 입력 가능합니다.",
style = PokitTheme.typography.detail1,
style = PokitTheme.typography.detail1
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ fun AddPokitScreen(
isError = state.pokitInputErrorMessage != null,
sub = state.pokitInputErrorMessage ?: "",
enable = (state.step != AddPokitScreenStep.POKIT_SAVE_LOADING),
maxLength = 10,
maxLength = 10
)

Spacer(modifier = Modifier.height(28.dp))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,9 @@ fun UnclassifiedScreen(
context.startActivity(Intent.createChooser(intent, "Pokit"))
},
onClickModifyLink = {

},
onClickRemoveLink = {

},
}
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,9 @@ fun PokitDetailScreen(
context.startActivity(Intent.createChooser(intent, "Pokit"))
},
onClickModifyLink = {

},
onClickRemoveLink = {

},
}
)
}

Expand Down

0 comments on commit b83d022

Please sign in to comment.