From 06d2eceba308e193eb82f909f32d9ecab910855c Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Thu, 6 Aug 2026 17:06:33 +0200 Subject: [PATCH] refactor: remove unused imports from SkeletonCard - Remove Spacer, Alignment, Color imports flagged during review --- .../kotlin/ch/parano/myicek/ui/components/SkeletonCard.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/components/SkeletonCard.kt b/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/components/SkeletonCard.kt index db224a6..8bd72bd 100644 --- a/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/components/SkeletonCard.kt +++ b/composeApp/src/commonMain/kotlin/ch/parano/myicek/ui/components/SkeletonCard.kt @@ -27,7 +27,6 @@ import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height import androidx.compose.foundation.layout.padding @@ -38,11 +37,9 @@ import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.material3.MaterialTheme import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue -import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.draw.alpha import androidx.compose.ui.draw.clip -import androidx.compose.ui.graphics.Color import androidx.compose.ui.unit.dp import ch.parano.myicek.ui.theme.Dimens