Skip to content

Commit

Permalink
[HOTFIX] DTO sendAt 변수 binding 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yummygyudon committed Jan 28, 2025
1 parent 0b7bfb5 commit ff5c69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/webHookService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const scheduleSuccessWebHook = async (alarmId: number): Promise<void> => {

const sendAt = dayjs().format('YYYY-MM-DD hh:mm');
const updateStatusWebHookDTO: OperationScheduleSuccessWebHookDTO = {
sendAt
sendAt: sendAt
};

await operationScheduleSuccessWebHook(alarmId, updateStatusWebHookDTO);
Expand Down

0 comments on commit ff5c69c

Please sign in to comment.