Skip to content

Commit 22b9ff8

Browse files
committed
chore
1 parent 4b41a27 commit 22b9ff8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/esm-patient-queues-app/src/active-visits/change-status-dialog.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ const ChangeStatus: React.FC<ChangeStatusDialogProps> = ({ queueEntry, currentEn
518518
{isSubmitting ? (
519519
<InlineLoading description={'Submitting...'} />
520520
) : (
521-
<Button type="submit">{status === QueueStatus.Pending ? 'Save' : 'Move to the next queue room--1'}</Button>
521+
<Button type="submit">{status === QueueStatus.Pending ? 'Save' : 'Move to the next queue room'}</Button>
522522
)}
523523
</ModalFooter>
524524
</Form>

packages/esm-patient-queues-app/src/active-visits/change-status-move-to-next-dialog.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ const ChangeStatusMoveToNext: React.FC<ChangeStatusDialogProps> = ({ patientUuid
523523
{isSubmitting ? (
524524
<InlineLoading description={'Submitting...'} />
525525
) : (
526-
<Button type="submit">{status === QueueStatus.Pending ? 'Save' : 'Move to the next queue room----2'}</Button>
526+
<Button type="submit">{status === QueueStatus.Pending ? 'Save' : 'Move to the next queue room'}</Button>
527527
)}
528528
</ModalFooter>
529529
</Form>

packages/esm-patient-queues-app/src/active-visits/queue-table-move-to-next-dialog.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ const QueueTableMoveToNext: React.FC<ChangeStatusDialogProps> = ({ patientUuid,
437437
{isSubmitting ? (
438438
<InlineLoading description={'Submitting...'} />
439439
) : (
440-
<Button type="submit">{status === QueueStatus.Pending ? 'Save' : 'Move to the next queue room---3'}</Button>
440+
<Button type="submit">{status === QueueStatus.Pending ? 'Save' : 'Move to the next queue room'}</Button>
441441
)}
442442
</ModalFooter>
443443
</Form>

0 commit comments

Comments
 (0)