Skip to content

Commit 030aa18

Browse files
committed
fix: remove default props from ProjectCard component
1 parent ebc3ac1 commit 030aa18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ProjectCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ interface Props {
9292
githubLabel?: string;
9393
}
9494
95-
const props = withDefaults(defineProps<Props>(), {});
95+
const props = defineProps<Props>();
9696
9797
const statusIcon = computed(() => {
9898
switch (props.status) {

0 commit comments

Comments
 (0)