Skip to content

Commit

Permalink
chore: 보내요 봉투 화면의 미사용 아이콘 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
yangsooplus committed Feb 7, 2024
1 parent 67cddf8 commit 3b2e40d
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ import androidx.hilt.navigation.compose.hiltViewModel
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import com.susu.core.designsystem.component.appbar.SusuDefaultAppBar
import com.susu.core.designsystem.component.appbar.icon.BackIcon
import com.susu.core.designsystem.component.appbar.icon.NotificationIcon
import com.susu.core.designsystem.component.appbar.icon.SearchIcon
import com.susu.core.designsystem.component.badge.BadgeColor
import com.susu.core.designsystem.component.badge.BadgeStyle
import com.susu.core.designsystem.component.badge.SusuBadge
Expand Down Expand Up @@ -86,8 +84,6 @@ fun SentEnvelopeScreen(
uiState: SentEnvelopeState = SentEnvelopeState(),
historyListState: LazyListState = rememberLazyListState(),
onClickBackIcon: () -> Unit = {},
onClickSearchIcon: () -> Unit = {},
onClickNotificationIcon: () -> Unit = {},
onClickEnvelopeDetail: (Long) -> Unit = {},
) {
Box(
Expand All @@ -101,10 +97,6 @@ fun SentEnvelopeScreen(
BackIcon(onClickBackIcon)
},
title = uiState.envelopeInfo.friend.name,
actions = {
SearchIcon(onClickSearchIcon)
NotificationIcon(onClickNotificationIcon)
},
)

Column(
Expand Down

0 comments on commit 3b2e40d

Please sign in to comment.