Skip to content

Commit

Permalink
Merge branch 'develop' into orgtabs_count_with_header
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaJ2305 authored Jan 22, 2025
2 parents 93a7a72 + 506245a commit c3e6a53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/pages/Appointments/components/AppointmentSlotPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,7 @@ export function AppointmentSlotPicker({
key={slot.id}
size="lg"
variant={
selectedSlotId === slot.id
? "outline_primary"
: "outline"
selectedSlotId === slot.id ? "primary" : "outline"
}
onClick={() => {
onSlotSelect(
Expand Down
2 changes: 1 addition & 1 deletion src/pages/PublicAppointments/Schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export function ScheduleAppointment(props: AppointmentsProps) {
size="lg"
variant={
selectedSlot?.id === slot.id
? "outline_primary"
? "primary"
: "outline"
}
onClick={() => {
Expand Down

0 comments on commit c3e6a53

Please sign in to comment.