Skip to content

Commit

Permalink
fix: Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
aloussase committed Sep 22, 2024
1 parent b4168d7 commit da9b47b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

set -e
docker build -t aloussase/kokoa-site .
docker push aloussase/kokoa-site
2 changes: 1 addition & 1 deletion src/lib/components/Project.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
authors: Author[];
};
let { id, term, name, categories, description, authors }: Props = $props();
let { id, term, name, categories, description /* authors */ }: Props = $props();
</script>

<!-- TODO: Use semantic CSS https://www.magentaa11y.com/checklist-web/link/#complex-examples -->
Expand Down
2 changes: 1 addition & 1 deletion src/routes/projects/[id]/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const load: PageServerLoad = async ({ params }) => {
const project = data.projects.find((p) => p.id === id)!;
return {
title: `${project?.name} | KOKOA`,
description: project?.description!,
description: project!.description,
project,
};
};

0 comments on commit da9b47b

Please sign in to comment.