diff --git a/src/components/modal/VacationGrantModal.vue b/src/components/modal/VacationGrantModal.vue index ed6f00f..400d33c 100644 --- a/src/components/modal/VacationGrantModal.vue +++ b/src/components/modal/VacationGrantModal.vue @@ -46,7 +46,7 @@ const myRemainingQuota = computed(() => { return props.remainingVacationData?.[myUserId.value] ?? 0; }); const isGiftButtonDisabled = computed(() => { - return myRemainingQuota.value <= 0; + return myRemainingQuota.value < 0; }); // 사원 별 남은 보내기 개수 const fetchSentVacationCount = async () => {