Skip to content

Commit

Permalink
Merge pull request #1502 from tidepool-org/WEB-3377-flags-missing
Browse files Browse the repository at this point in the history
[WEB-3377] - "Last Reviewed" and "PatientDrawer" flags occassionally missing on TIDE Dashboard
  • Loading branch information
henry-tp authored Jan 27, 2025
2 parents 3c3537d + 6439a46 commit e6c685b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/pages/dashboard/TideDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,9 @@ const TideDashboardSection = React.memo(props => {
}, ((prevProps, nextProps) => (
prevProps.section.sortDirection === nextProps.section.sortDirection &&
prevProps.config === nextProps.config &&
prevProps.patients === nextProps.patients
prevProps.patients === nextProps.patients &&
prevProps.showTideDashboardLastReviewed === nextProps.showTideDashboardLastReviewed &&
prevProps.showTideDashboardPatientDrawer === nextProps.showTideDashboardPatientDrawer
)));

export const TideDashboard = (props) => {
Expand Down

0 comments on commit e6c685b

Please sign in to comment.