Make logo optional

This commit is contained in:
andrewwallacespeckle
2025-06-19 15:48:27 +02:00
parent fa1f6cd78e
commit 310f452503
2 changed files with 1 additions and 2 deletions
@@ -34,7 +34,7 @@
<script setup lang="ts">
const props = defineProps<{
logo: string
logo?: string
name: string
clickable?: boolean
bannerText?: string | null
@@ -1,6 +1,5 @@
<template>
<WorkspaceCard
:logo="''"
:name="invite.workspaceName"
:class="isAccepted ? '' : 'bg-foundation'"
:banner-text="`${invite.invitedBy.name} invited you to join this workspace`"