From b83cbef7fc74abbfe6c03d6fd425d20cc5124be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Horv=C3=A1th=20Gergely?= Date: Thu, 5 Feb 2026 16:04:54 +0100 Subject: [PATCH] Fix typo in import statement Corrects a misspelled 'mport SwiftUI' to 'import SwiftUI' in LessonCard.swift, restoring the proper SwiftUI import and preventing compilation errors. --- firka/ios/FirkaWatch Watch App/Components/LessonCard.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firka/ios/FirkaWatch Watch App/Components/LessonCard.swift b/firka/ios/FirkaWatch Watch App/Components/LessonCard.swift index 645436e7..3ba2ea71 100644 --- a/firka/ios/FirkaWatch Watch App/Components/LessonCard.swift +++ b/firka/ios/FirkaWatch Watch App/Components/LessonCard.swift @@ -1,4 +1,4 @@ -mport SwiftUI +import SwiftUI struct LessonCard: View { let lesson: WidgetLesson