Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
maxidragon committed Nov 17, 2023
1 parent d376547 commit f146837
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions frontend/src/Components/Table/Row/LearningRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ const LearningRow = (props: {
editedLearning.status === "TO_LEARN"
? "primary"
: editedLearning.status === "IN_PROGRESS"
? "warning"
: "success"
? "warning"
: "success"
}
/>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/Components/Table/Row/ProjectRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ const ProjectRow = (props: {
editedProject.status === "PLANNED"
? "primary"
: editedProject.status === "IN_PROGRESS"
? "warning"
: "success"
? "warning"
: "success"
}
/>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/Components/Table/Row/RecentTaskRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ const RecentTaskRow = (props: {
editedTask.status === "TODO"
? "primary"
: editedTask.status === "IN_PROGRESS"
? "warning"
: "success"
? "warning"
: "success"
}
/>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/Components/Table/Row/TaskForProjectRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ const TasksForProjectRow = (props: {
editedTask.status === "TODO"
? "primary"
: editedTask.status === "IN_PROGRESS"
? "warning"
: "success"
? "warning"
: "success"
}
/>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/Components/Table/Row/TaskRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ const TaskRow = (props: {
editedTask.status === "TODO"
? "primary"
: editedTask.status === "IN_PROGRESS"
? "warning"
: "success"
? "warning"
: "success"
}
/>
</Box>
Expand Down

0 comments on commit f146837

Please sign in to comment.