diff --git a/app/views/appointments/_cancelled.html b/app/views/appointments/_cancelled.html
index b5e5c173..1702c86f 100644
--- a/app/views/appointments/_cancelled.html
+++ b/app/views/appointments/_cancelled.html
@@ -25,7 +25,7 @@
{{ appointment.patient.dateOfBirth | age }} old
- {{ appointment.vaccinations | joinWithAnd }}
+ {{ appointment.vaccinations | join(" and ") }}
|
diff --git a/app/views/appointments/_completed.html b/app/views/appointments/_completed.html
index db279cba..837eaec4 100644
--- a/app/views/appointments/_completed.html
+++ b/app/views/appointments/_completed.html
@@ -24,7 +24,7 @@
{{ appointment.patient.dateOfBirth | age }} old
|
- {{ appointment.vaccinations | joinWithAnd }}
+ {{ appointment.vaccinations | join(" and ") }}
|
{% if appointment.patient.contactDetails.mobile %}
diff --git a/app/views/appointments/_scheduled.html b/app/views/appointments/_scheduled.html
index 333e12ca..f1b15d6a 100644
--- a/app/views/appointments/_scheduled.html
+++ b/app/views/appointments/_scheduled.html
@@ -28,7 +28,7 @@
{{ appointment.patient.dateOfBirth | age }} old
|
- {{ appointment.vaccinations | joinWithAnd }}
+ {{ appointment.vaccinations | join(" and ") }}
|
{% if appointment.patient.contactDetails.mobile %}
|