Skip to content

Commit

Permalink
fix/#17 : ktlint 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
shinythinking committed Feb 18, 2025
1 parent b4b178b commit 2af43a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ import com.naver.maps.map.compose.Marker
import com.naver.maps.map.compose.MarkerState
import com.naver.maps.map.compose.NaverMap
import com.naver.maps.map.compose.rememberCameraPositionState
import timber.log.Timber

@Composable
fun RecommendationRoute(
Expand Down Expand Up @@ -195,13 +194,11 @@ fun RecommendationResultScreen(
showListView: () -> Unit,
onBackClick: () -> Unit,
) {

Box(
modifier = modifier.fillMaxSize()
) {
MapisodeFilledButton(
onClick = {
Timber.e("ResultViewType: $resultViewType")
when (resultViewType) {
ResultViewType.MAP_VIEW -> showListView()
ResultViewType.LIST_VIEW -> showMapView()
Expand Down Expand Up @@ -241,7 +238,6 @@ fun ResultMap(
Box(
modifier = Modifier.fillMaxSize()
) {

val cameraPositionState = rememberCameraPositionState()

val bounds = rememberSaveable {
Expand Down Expand Up @@ -318,9 +314,3 @@ fun ResultList(
}
}
}


@Composable
fun EpisodeCard() {

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ package com.boostcamp.mapisode.home.ai

import com.boostcamp.mapisode.ui.base.SideEffect

sealed class RecommendationSideEffect : SideEffect {
}
sealed class RecommendationSideEffect : SideEffect

0 comments on commit 2af43a5

Please sign in to comment.