update appointment widget call with business object

This commit is contained in:
2025-02-25 13:00:42 +02:00
parent e1bc23acc9
commit bd3002a518

View File

@@ -66,7 +66,11 @@ class _MzansiCalendarState extends State<MzansiCalendar> {
List<Widget> getToolBody() {
List<Widget> toolBodies = [
//appointment here
Appointments(signedInUser: widget.arguments.signedInUser),
Appointments(
signedInUser: widget.arguments.signedInUser,
business: widget.arguments.business,
personalSelected: widget.arguments.personalSelected,
),
];
return toolBodies;
}