File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/src/main/java/to/bitkit/ui/screens/wallets/activity Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ fun ActivityDetailScreen(
9494 onBackClick = onBackClick,
9595 actions = { CloseNavIcon (onClick = onCloseClick) },
9696 )
97- ActivityItemView (
97+ ActivityDetailContent (
9898 item = item,
9999 tags = tags,
100100 onRemoveTag = { detailViewModel.removeTag(it) },
@@ -119,7 +119,7 @@ fun ActivityDetailScreen(
119119
120120@OptIn(ExperimentalLayoutApi ::class )
121121@Composable
122- private fun ActivityItemView (
122+ private fun ActivityDetailContent (
123123 item : Activity ,
124124 tags : List <String >,
125125 onRemoveTag : (String ) -> Unit ,
@@ -538,7 +538,7 @@ private fun ZigzagDivider() {
538538@Composable
539539private fun PreviewLightningSent () {
540540 AppThemeSurface {
541- ActivityItemView (
541+ ActivityDetailContent (
542542 item = Activity .Lightning (
543543 v1 = LightningActivity (
544544 id = " test-lightning-1" ,
@@ -567,7 +567,7 @@ private fun PreviewLightningSent() {
567567@Composable
568568private fun PreviewOnchain () {
569569 AppThemeSurface {
570- ActivityItemView (
570+ ActivityDetailContent (
571571 item = Activity .Onchain (
572572 v1 = OnchainActivity (
573573 id = " test-onchain-1" ,
You can’t perform that action at this time.
0 commit comments