Skip to content

Commit

Permalink
improve : lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
HyomK committed Feb 27, 2024
1 parent 25000d7 commit 55faf30
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId = "nexters.hyomk.dontforget"
minSdk = Apps.minSdk
targetSdk = Apps.targetSdk
versionCode = 1
versionName = "1.0"
versionCode = 6
versionName = "1.0.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import nexters.hyomk.dontforget.presentation.utils.pixelsToDp
import nexters.hyomk.dontforget.ui.theme.Gray500
import nexters.hyomk.dontforget.ui.theme.Gray800
import nexters.hyomk.dontforget.ui.theme.Gray900
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ fun AnniversaryNotification(
},
isSelected = alarms.contains(it),
modifier = modifier.padding
(end = 8.dp),
(end = 8.dp),
)
}
Spacer(modifier = Modifier.width(20.dp))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ fun AnniversaryDatePicker(
}

Column(
modifier = modifier
modifier = modifier,
) {
Box(modifier = Modifier.padding(vertical = 32.dp)) {
CustomDateTab(
Expand Down
2 changes: 1 addition & 1 deletion domain/src/main/java/nexters/hyomk/domain/model/FcmInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package nexters.hyomk.domain.model
data class FcmInfo(
val token: String,
val deviceId: String,
val status: AlarmStatus
val status: AlarmStatus,
)

0 comments on commit 55faf30

Please sign in to comment.