Skip to content

Commit

Permalink
enable heatmap and fix appointments column size (#9713)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Jan 3, 2025
1 parent b36f39f commit d521adb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion care.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const careConfig = {
// Kill switch in-case the heatmap API doesn't scale as expected
useAvailabilityStatsAPI: boolean(
"REACT_APPOINTMENTS_USE_AVAILABILITY_STATS_API",
false,
true,
),
},

Expand Down
2 changes: 1 addition & 1 deletion src/components/Schedule/Appointments/AppointmentsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ function AppointmentColumn(props: {
</span>
</div>
{appointments.length === 0 ? (
<div className="flex justify-center items-center h-[calc(100vh-22rem)]">
<div className="flex justify-center items-center h-[calc(100vh-18rem)]">
<p className="text-gray-500">{t("no_appointments")}</p>
</div>
) : (
Expand Down

0 comments on commit d521adb

Please sign in to comment.