diff --git a/apps/website/components/landing/PartnerCard.vue b/apps/website/components/landing/PartnerCard.vue index 1f31c39..5229342 100644 --- a/apps/website/components/landing/PartnerCard.vue +++ b/apps/website/components/landing/PartnerCard.vue @@ -12,7 +12,7 @@ const props = withDefaults(defineProps<{ placeholder?: boolean }>(), { placeholder: false }) -const initial = computed(() => props.name[0].toUpperCase()) +const initial = computed(() => (props.name[0] ?? '').toUpperCase())