diff --git a/website/src/components/TaskPage/TaskPage.tsx b/website/src/components/TaskPage/TaskPage.tsx
index 9fc26c42..41d89405 100644
--- a/website/src/components/TaskPage/TaskPage.tsx
+++ b/website/src/components/TaskPage/TaskPage.tsx
@@ -16,7 +16,7 @@ export const TaskPage = ({ type }: TaskPageProps) => {
const { t } = useTranslation(["tasks", "common"]);
const apiHook = apiHooksByType[type];
const { tasks, isLoading, reset, trigger, error } = apiHook(type);
- const taskType = TaskInfos.find((taskType) => taskType.type === type);
+ const taskInfo = TaskInfos.find((taskType) => taskType.type === type);
if (isLoading) {
return