diff --git a/packages/hoppscotch-common/src/components/app/Banner.vue b/packages/hoppscotch-common/src/components/app/Banner.vue index ce76bfe5b..be99f476d 100644 --- a/packages/hoppscotch-common/src/components/app/Banner.vue +++ b/packages/hoppscotch-common/src/components/app/Banner.vue @@ -30,15 +30,9 @@ import IconAlertCircle from "~icons/lucide/alert-circle" import IconAlertTriangle from "~icons/lucide/alert-triangle" import IconInfo from "~icons/lucide/info" -const props = withDefaults( - defineProps<{ - banner: BannerContent - dismissible?: boolean - }>(), - { - dismissible: false, - } -) +const props = defineProps<{ + banner: BannerContent +}>() const t = useI18n() diff --git a/packages/hoppscotch-common/src/components/app/Header.vue b/packages/hoppscotch-common/src/components/app/Header.vue index 088cb5879..58301f18d 100644 --- a/packages/hoppscotch-common/src/components/app/Header.vue +++ b/packages/hoppscotch-common/src/components/app/Header.vue @@ -214,7 +214,6 @@