diff --git a/src/digital-components/date-picker/date-picker.vue b/src/digital-components/date-picker/date-picker.vue
index d586ff839..9d620ec77 100644
--- a/src/digital-components/date-picker/date-picker.vue
+++ b/src/digital-components/date-picker/date-picker.vue
@@ -281,7 +281,7 @@ export default {
if (event.screenX === 0 && event.screenY === 0) {
return;
}
- this.$emit("date-clicked", date);
+ this.$emit("date-selected", date);
},
getWeekStartDate(dateString) {
const date = convertDateStringToDate(dateString);
@@ -846,12 +846,6 @@ export default {
},
},
watch: {
- isLoading(newValue) {
- // if done loading dates, then set to first available date
- if (newValue === false && this.firstAvailableSelectableDate) {
- this.selectedDate = this.firstAvailableSelectableDate;
- }
- },
modelValue(newValue) {
this.resetField({
value: newValue,
diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue
index d3d382980..bee86a537 100644
--- a/src/layouts/schedule/schedule.vue
+++ b/src/layouts/schedule/schedule.vue
@@ -133,8 +133,6 @@
:isOvernightDropoff="isOvernightDropoff" />