Skip to content

Commit

Permalink
Merge branch 'rm/361346' into 'master'
Browse files Browse the repository at this point in the history
fix: postpone reminder of 30 minutes

See merge request kchat/webapp!925
  • Loading branch information
antonbuks committed Sep 19, 2024
2 parents 90c3677 + 677a3d7 commit 268d9f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const IkPostponeReminderButtons = (props: Props) => {
let endTime = currentDate;
if (id === PostReminders.THIRTY_MINUTES) {
// add 30 minutes in current time
endTime = currentDate.add(0.1, 'minutes');
endTime = currentDate.add(30, 'minutes');
} else if (id === PostReminders.ONE_HOUR) {
// add 1 hour in current time
endTime = currentDate.add(1, 'hour');
Expand Down

0 comments on commit 268d9f5

Please sign in to comment.