Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rmunn committed Oct 18, 2024
1 parent ac2a388 commit f4ff428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/Users/UserProjects.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
$: allSelected = projects && selectedProjects && selectedProjects.length === projects.length;
function handleSelectAllClick() {
function handleSelectAllClick(): void {
if (!selectedProjects || !projects) return;
if (allSelected) {
selectedProjects = [];
Expand Down

0 comments on commit f4ff428

Please sign in to comment.