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

Commit

Permalink
♻️ :: pr 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
chlgkdms committed Dec 2, 2023
1 parent 4bbf87f commit f7eeb8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ class UserRepositoryImpl(
}

override suspend fun getUserInformation() = localUserDataSource.getUserInformation().toEntity()

override suspend fun editProfile(image: String) = runCatching {
remoteUserDataSource.editProfile(
EditProfileRequest(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,7 @@ private fun ProfileImage(
onClick: () -> Unit,
) {
Box(
modifier = Modifier.signalClickable {
onClick()
},
modifier = Modifier.signalClickable(onClick = onClick)
) {
AsyncImage(
modifier = Modifier
Expand Down

0 comments on commit f7eeb8c

Please sign in to comment.