From 7f9374a7684761f9e1863281ee6ad64fef7d5847 Mon Sep 17 00:00:00 2001 From: marco Date: Mon, 2 Dec 2024 18:21:26 +0100 Subject: [PATCH] fixed type issue --- lib/services/content_provider.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/services/content_provider.dart b/lib/services/content_provider.dart index 1f19c19..71c05a1 100644 --- a/lib/services/content_provider.dart +++ b/lib/services/content_provider.dart @@ -21,7 +21,7 @@ class ContentProvider { static List get experience => _content['experience']; - static List> get education => _content['education']; + static List get education => _content['education']; - static List> get skills => _content['skills']; + static List get skills => _content['skills']; }