From 849cbdb66949dac5d5b4009e58806925392fd70b Mon Sep 17 00:00:00 2001 From: Nico Date: Thu, 19 Jun 2025 16:45:40 +0200 Subject: [PATCH] now the delete button in the tempalte window wont delete the finished entries --- lib/screens/sharedMethods/delete_templates.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/sharedMethods/delete_templates.dart b/lib/screens/sharedMethods/delete_templates.dart index acf23a4..46412a9 100644 --- a/lib/screens/sharedMethods/delete_templates.dart +++ b/lib/screens/sharedMethods/delete_templates.dart @@ -38,6 +38,6 @@ class DeleteTemplates { db = ExcursionDBHelper(); } - await db!.deleteAllMainEntries(); + await db!.deleteAllTemplates(); } }