Skip to content

Commit

Permalink
Merge pull request #102 from DennisBauer/fix_warning
Browse files Browse the repository at this point in the history
Fix minor warning for upcoming payments icon
  • Loading branch information
DennisBauer committed Feb 2, 2024
2 parents 850a6ac + 897e799 commit 6874b48
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -12,7 +12,7 @@ import androidx.compose.foundation.layout.size
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.rounded.List
import androidx.compose.material.icons.automirrored.rounded.List
import androidx.compose.material3.Card
import androidx.compose.material3.CardDefaults
import androidx.compose.material3.Icon
Expand Down Expand Up @@ -155,7 +155,7 @@ fun UpcomingPaymentsOverviewPlaceholder(modifier: Modifier = Modifier) {
verticalArrangement = Arrangement.Center,
) {
Icon(
imageVector = Icons.Rounded.List,
imageVector = Icons.AutoMirrored.Rounded.List,
contentDescription = null,
modifier = Modifier.size(100.dp),
)
Expand Down

0 comments on commit 6874b48

Please sign in to comment.