Skip to content

Commit afd2256

Browse files
committed
[BOOK-475] chore: code style check success
1 parent 810ad58 commit afd2256

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

core/datastore/api/src/main/kotlin/com/ninecraft/booket/core/datastore/api/datasource/LoginMethodDataSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ interface LoginMethodDataSource {
77
val recentLoginMethod: Flow<LoginMethod>
88
suspend fun setRecentLoginMethod(loginMethod: LoginMethod)
99
suspend fun clearRecentLoginMethod()
10-
}
10+
}

core/datastore/impl/src/main/kotlin/com/ninecraft/booket/core/datastore/impl/datasource/DefaultLoginMethodDataSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ class DefaultLoginMethodDataSource(
4545
companion object {
4646
private val RECENT_LOGIN_METHOD = stringPreferencesKey("RECENT_LOGIN_METHOD")
4747
}
48-
}
48+
}

feature/login/src/main/kotlin/com/ninecraft/booket/feature/login/LoginUi.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
1010
import androidx.compose.foundation.layout.height
1111
import androidx.compose.foundation.layout.offset
1212
import androidx.compose.foundation.layout.padding
13-
import androidx.compose.ui.zIndex
14-
import com.ninecraft.booket.core.common.extensions.noRippleClickable
1513
import androidx.compose.material3.Icon
1614
import androidx.compose.material3.Text
1715
import androidx.compose.runtime.Composable
@@ -24,6 +22,7 @@ import androidx.compose.ui.res.stringResource
2422
import androidx.compose.ui.res.vectorResource
2523
import androidx.compose.ui.unit.IntOffset
2624
import androidx.compose.ui.unit.dp
25+
import com.ninecraft.booket.core.common.extensions.noRippleClickable
2726
import com.ninecraft.booket.core.designsystem.DevicePreview
2827
import com.ninecraft.booket.core.designsystem.component.button.ReedButton
2928
import com.ninecraft.booket.core.designsystem.component.button.ReedButtonColorStyle
@@ -131,7 +130,7 @@ internal fun LoginUi(
131130
x = (-28).dp.roundToPx(),
132131
y = (-32).dp.roundToPx(),
133132
)
134-
}
133+
},
135134
)
136135
}
137136
}

0 commit comments

Comments
 (0)