Skip to content

Commit

Permalink
O3-3992:Error When Patient is Not Added to Queue During Visit Start
Browse files Browse the repository at this point in the history
  • Loading branch information
makombe committed Sep 17, 2024
1 parent 5447201 commit ccb0c73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ const StartVisitForm: React.FC<StartVisitFormProps> = ({
.subscribe({
next: (response) => {
if (response.status === 201) {
if (config.showServiceQueueFields) {
if (config.showServiceQueueFields && queueLocation && service && priority) {
// retrieve values from the queue extension
setVisitUuid(response.data.uuid);

Expand Down

0 comments on commit ccb0c73

Please sign in to comment.