From 126ec83465260cf53a395f6344feec28962d4590 Mon Sep 17 00:00:00 2001 From: EmmaVandewalle Date: Sat, 9 Mar 2024 16:51:31 +0100 Subject: [PATCH] fix: linting for static value (temp value) --- frontend/src/pages/student/ProjectCardStudent.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/student/ProjectCardStudent.tsx b/frontend/src/pages/student/ProjectCardStudent.tsx index a1b3e033..8d0ad6b4 100644 --- a/frontend/src/pages/student/ProjectCardStudent.tsx +++ b/frontend/src/pages/student/ProjectCardStudent.tsx @@ -4,8 +4,8 @@ import {JSX} from "react"; export default function ProjectCardStudent(): JSX.Element { // as for now I'm not sure how the info will come in, so using // static values for now (change to true and true/false to see how they'll look like): - let has_submission: boolean = true; - let isSuccess: boolean = true; + const has_submission: boolean = false; + const isSuccess: boolean = true; return (