fix I dont know logo and profile link build issues

This commit is contained in:
2026-05-27 16:32:28 +02:00
parent 052f937027
commit 39bf88356f
15 changed files with 16 additions and 30 deletions
@@ -21,8 +21,6 @@ class MzansiDirectoryProvider extends ChangeNotifier {
AppUser? selectedUser;
String searchTerm;
String businessTypeFilter;
List<ProfileLink> personalLinks = [];
List<ProfileLink> businessLinks = [];
MzansiDirectoryProvider({
this.toolIndex = 0,
@@ -119,14 +117,4 @@ class MzansiDirectoryProvider extends ChangeNotifier {
this.businessTypeFilter = businessTypeFilter;
notifyListeners();
}
void setPersonalLinks({required List<ProfileLink> personalLinks}) {
this.personalLinks = personalLinks;
notifyListeners();
}
void setBusinessLinks({required List<ProfileLink> businessLinks}) {
this.businessLinks = businessLinks;
notifyListeners();
}
}