Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
magsyg committed Jun 30, 2024
1 parent b224a1c commit 8976322
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ export function RecruitmentStatistics() {
}
}, [recruitmentId, t]);

const recruitmentStatisticsContainer = (children: ReactNode) => (
<div className={styles.statisticsContainer}>
<div className={styles.chartContainer}>{children}</div>
</div>
);

return (
<div className={styles.container}>
<Text as={'strong'} size={'xl'}>
Expand Down
1 change: 0 additions & 1 deletion frontend/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,6 @@ export async function getRecruitmentStats(id: string): Promise<AxiosResponse<Rec
return response;
}


export async function postFeedback(feedbackData: FeedbackDto): Promise<AxiosResponse> {
const url = BACKEND_DOMAIN + ROUTES.backend.samfundet__feedback;
const response = await axios.post(url, feedbackData, { withCredentials: true });
Expand Down

0 comments on commit 8976322

Please sign in to comment.