Skip to content

Commit 5172942

Browse files
authored
fixing the warning message (#19)
1 parent ef2c4c8 commit 5172942

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

resources/js/components/AppearanceTabs.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ interface Props {
66
class?: string;
77
}
88
9-
const { class: containerClass } = withDefaults(defineProps<Props>(), {
10-
class: '',
11-
});
9+
const { class: containerClass = '' } = defineProps<Props>();
1210
1311
const { appearance, updateAppearance } = useAppearance();
1412

0 commit comments

Comments
 (0)