-export interface Props {
+defineProps<{
fullWidth?: boolean;
-}
-
-defineProps
();
+}>();
diff --git a/web/src/components/layout/Panel.vue b/web/src/components/layout/Panel.vue
index 3a1b4521a..c4960079f 100644
--- a/web/src/components/layout/Panel.vue
+++ b/web/src/components/layout/Panel.vue
@@ -36,15 +36,10 @@ import { computed, ref } from 'vue';
import Icon from '~/components/atomic/Icon.vue';
-const props = withDefaults(
- defineProps<{
- title?: string;
- collapsable?: boolean;
- }>(),
- {
- title: '',
- },
-);
+const props = defineProps<{
+ title?: string;
+ collapsable?: boolean;
+}>();
/**
* _collapsed is used to store the internal state of the panel, but is
diff --git a/web/src/components/layout/scaffold/Header.vue b/web/src/components/layout/scaffold/Header.vue
index f046e0ca7..0b44ff056 100644
--- a/web/src/components/layout/scaffold/Header.vue
+++ b/web/src/components/layout/scaffold/Header.vue
@@ -3,7 +3,7 @@
class="bg-wp-background-100 border-b-1 border-wp-background-400 dark:border-wp-background-100 dark:bg-wp-background-300 text-wp-text-100"
:class="{ 'md:px-4': fullWidth }"
>
-
+
-
+