Compare commits

...

2 Commits

Author SHA1 Message Date
d0cb13a7f1 fix: removed console logs 2025-05-12 01:51:34 +03:00
4ad7a00535 feat: small text fix 2025-05-12 01:46:34 +03:00
2 changed files with 2 additions and 3 deletions

View File

@@ -145,7 +145,7 @@ const ModalSettings: FunctionComponent<ModalWindowProps> = ({ isOpen, setIsOpen,
<input <input
class="flex-1 outline-0" class="flex-1 outline-0"
{...register("oldPassword")} {...register("oldPassword")}
placeholder="Новый пароль" placeholder="Старый пароль"
type={showOldPassword ? "text" : "password"} type={showOldPassword ? "text" : "password"}
/> />
{showOldPassword ? ( {showOldPassword ? (

View File

@@ -182,7 +182,7 @@ const ProfileTasks: FunctionComponent = () => {
taskType_id: selectedTaskType, taskType_id: selectedTaskType,
dateTime_due: formattedDate, dateTime_due: formattedDate,
priority: selectedPriority, priority: selectedPriority,
telegram_notifications: false, telegram_notifications: true,
}; };
if (isCreating) { if (isCreating) {
@@ -373,7 +373,6 @@ const ProfileTasks: FunctionComponent = () => {
subject: taskDetails.subject, subject: taskDetails.subject,
taskType: taskDetails.task_type, taskType: taskDetails.task_type,
}; };
console.log(task);
setIsOpen(true); setIsOpen(true);
setIsEdit(true); setIsEdit(true);