Skip to content

Commit

Permalink
fix: Handle new names of CustomShapes
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoulongne committed Oct 21, 2024
1 parent 3a26a5d commit b0b2df1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import com.infomaniak.swisstransfer.ui.theme.SwissTransferTheme
fun EmailAddressChip(text: String) {
Box(
modifier = Modifier
.clip(CustomShapes.Rounded)
.clip(CustomShapes.ROUNDED)
.background(SwissTransferTheme.colors.emailAddressChipColor)
.padding(horizontal = Margin.Small),
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fun QrCode() { // TODO: Add parameter containing the QR code value, and use it.
Box(
modifier = Modifier
.size(180.dp)
.clip(CustomShapes.small)
.clip(CustomShapes.SMALL)
.background(SwissTransferTheme.colors.qrCodeBackground),
contentAlignment = Alignment.Center,
) {
Expand Down

0 comments on commit b0b2df1

Please sign in to comment.