Skip to content

Commit

Permalink
chore: fix loading issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas950 committed Feb 20, 2024
1 parent 4df7c50 commit 0d6087f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/contributors.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts" setup>
const { data, error } = useAsyncGql({ operation: "contributors" }),
filteredData = computed(() => {
return data.value.credits;
return data.value?.credits ?? [];
}),
staff = computed(() => {
return (
Expand Down

0 comments on commit 0d6087f

Please sign in to comment.