Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
horrible-little-slime committed Jun 20, 2024
1 parent 2c2e62a commit db758d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/excavator-web/app/routes/projects.$project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ export default function Project() {
return (
<Stack spacing={8} mt={8}>
<ProjectHeader project={project} projects={projectNames} />
{project.completed && <Alert>This project is completed. It is no longer accepting data.</Alert>}
{project.completed && (
<Alert>
This project is completed. It is no longer accepting data.
</Alert>
)}
{data.length === 0 ? (
<Alert>No data for this project yet - you better get excavating!</Alert>
) : (
Expand Down

0 comments on commit db758d2

Please sign in to comment.