Skip to content

Commit

Permalink
[CHORE/#32] 파라미터 순서 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed Jul 11, 2024
1 parent 73e093d commit 244b8d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ import kotlinx.coroutines.launch
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun SortingBottomSheet(
modifier: Modifier = Modifier,
onDismiss: () -> Unit,
currentSortBy: Int,
modifier: Modifier = Modifier,
newSortBy: MutableState<Int> = mutableStateOf(currentSortBy),
) {
val scope = rememberCoroutineScope()
Expand Down

0 comments on commit 244b8d9

Please sign in to comment.