From c931ec71430da75bd575d82ec557df40dec5e6c3 Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Wed, 8 Jul 2026 17:02:29 +0200 Subject: [PATCH] fix: add missing Text import in desktop Main.kt Task 1 scaffold omitted the material3 Text import, blocking desktop compilation. Required to run common tests via desktopTest. --- composeApp/src/desktopMain/kotlin/ch/parano/myice/Main.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/composeApp/src/desktopMain/kotlin/ch/parano/myice/Main.kt b/composeApp/src/desktopMain/kotlin/ch/parano/myice/Main.kt index 5b723f1..ddbaca7 100644 --- a/composeApp/src/desktopMain/kotlin/ch/parano/myice/Main.kt +++ b/composeApp/src/desktopMain/kotlin/ch/parano/myice/Main.kt @@ -1,5 +1,6 @@ package ch.parano.myice +import androidx.compose.material3.Text import androidx.compose.ui.window.Window import androidx.compose.ui.window.application