diff --git a/Frontend/patient_manager/lib/components/homeTileGrid.dart b/Frontend/patient_manager/lib/components/homeTileGrid.dart index 40e63a6b..566ddec0 100644 --- a/Frontend/patient_manager/lib/components/homeTileGrid.dart +++ b/Frontend/patient_manager/lib/components/homeTileGrid.dart @@ -115,6 +115,20 @@ class _HomeTileGridState extends State { } ], ); + tileList.add( + [ + Icons.check_box_outlined, + "Access Review", + () { + Navigator.of(context).pushNamed( + '/patient-access-review', + arguments: widget.signedInUser, + ); + // Navigator.popAndPushNamed(context, '/patient-manager', + // arguments: widget.userEmail); + } + ], + ); } void setAppsBusiness(List> tileList) {