Browse Source

fix: the bgColor prop of profile-card componet not required

windyeasy 4 weeks ago
parent
commit
ef1e006530
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/profile-card.vue

+ 1 - 1
src/components/profile-card.vue

@@ -1,6 +1,6 @@
 <script lang="ts" setup>
 interface IProps {
-  bgColor: string
+  bgColor?: string
   link?: string
 }