Skip to content

Commit

Permalink
comments out for tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
Snorre98 committed Nov 2, 2024
1 parent a52a4ce commit 39a9624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/Components/RejectionMail/RejectionMail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { t } from 'i18next';
import { useState } from 'react';
import { useParams } from 'react-router-dom';
import { toast } from 'react-toastify';
import { postRejectionMail } from '~/api';
//import { postRejectionMail } from '~/api';
import { KEY } from '~/i18n/constants';
import { Button } from '../Button';
import { InputField } from '../InputField';
Expand All @@ -15,7 +15,7 @@ export function RejectionMail() {

function handleSubmit() {
if (recruitmentId) {
postRejectionMail(recruitmentId, { subject, text });
//postRejectionMail(recruitmentId, { subject, text });
toast.success(t(KEY.common_save_successful));
} else {
toast.error(t(KEY.common_something_went_wrong));
Expand Down

0 comments on commit 39a9624

Please sign in to comment.