Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
fix: linting for static value (temp value)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaVandewalle committed Mar 9, 2024
1 parent 8d9a714 commit 126ec83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/student/ProjectCardStudent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<div
Expand Down

0 comments on commit 126ec83

Please sign in to comment.