chore: entferne DesktopApp und DesktopMainLayout, da diese nicht mehr benötigt werden

This commit is contained in:
2026-04-19 16:07:54 +02:00
parent 767d78af27
commit ec861b8f81
31 changed files with 83 additions and 79 deletions
@@ -70,7 +70,7 @@ fun StammdatenTabContent(
// ohne die Abhängigkeit zu haben. In einer echten Architektur kommt dies über das Repository.
// Aber für die Demo/Fakten-Präsentation im Desktop-Shell-Kontext:
try {
val clazz = Class.forName("at.mocode.desktop.data.TurnierStore")
val clazz = Class.forName("at.mocode.frontend.shell.desktop.data.TurnierStore")
val method = clazz.getMethod("allTurniere")
val all = method.invoke(null) as? List<*>
val turnier = all?.find { t ->