diff --git a/web/components/Notifications/Item.vue b/web/components/Notifications/Item.vue
index ef75200c1..8b41860ae 100644
--- a/web/components/Notifications/Item.vue
+++ b/web/components/Notifications/Item.vue
@@ -87,8 +87,8 @@ const { mutate: archive, loading } = useMutation(archiveMutation, {
size="xs"
@click="archive"
>
-
- Archive
+
+ Archive
diff --git a/web/components/shadcn/button/Button.vue b/web/components/shadcn/button/Button.vue
index a43a5737b..7e3f61d58 100644
--- a/web/components/shadcn/button/Button.vue
+++ b/web/components/shadcn/button/Button.vue
@@ -12,6 +12,9 @@ interface Props extends PrimitiveProps {
const props = withDefaults(defineProps(), {
as: 'button',
+ variant: 'default',
+ size: 'default',
+ class: undefined,
})
diff --git a/web/components/shadcn/dropdown-menu/DropdownMenuContent.vue b/web/components/shadcn/dropdown-menu/DropdownMenuContent.vue
index 7c59c4ca1..a182b9ed6 100644
--- a/web/components/shadcn/dropdown-menu/DropdownMenuContent.vue
+++ b/web/components/shadcn/dropdown-menu/DropdownMenuContent.vue
@@ -13,6 +13,7 @@ const props = withDefaults(
defineProps(),
{
sideOffset: 4,
+ class: undefined,
},
)
const emits = defineEmits()
diff --git a/web/components/shadcn/scroll-area/ScrollBar.vue b/web/components/shadcn/scroll-area/ScrollBar.vue
index 6b15c7385..1652e412a 100644
--- a/web/components/shadcn/scroll-area/ScrollBar.vue
+++ b/web/components/shadcn/scroll-area/ScrollBar.vue
@@ -5,6 +5,7 @@ import { cn } from '@/helpers/utils'
const props = withDefaults(defineProps(), {
orientation: 'vertical',
+ class: undefined,
})
const delegatedProps = computed(() => {
diff --git a/web/components/shadcn/select/SelectContent.vue b/web/components/shadcn/select/SelectContent.vue
index aa6b024bd..6242a7367 100644
--- a/web/components/shadcn/select/SelectContent.vue
+++ b/web/components/shadcn/select/SelectContent.vue
@@ -24,6 +24,8 @@ const props = withDefaults(
}>(),
{
position: 'popper',
+ class: undefined,
+ to: "#modals",
},
)
const emits = defineEmits()
diff --git a/web/components/shadcn/tooltip/TooltipContent.vue b/web/components/shadcn/tooltip/TooltipContent.vue
index 39a34fb85..128b450a1 100644
--- a/web/components/shadcn/tooltip/TooltipContent.vue
+++ b/web/components/shadcn/tooltip/TooltipContent.vue
@@ -9,6 +9,7 @@ defineOptions({
const props = withDefaults(defineProps(), {
sideOffset: 4,
+ class: undefined,
})
const emits = defineEmits()
diff --git a/web/composables/gql/graphql.ts b/web/composables/gql/graphql.ts
index 28d6a1fc7..a3bf5befa 100644
--- a/web/composables/gql/graphql.ts
+++ b/web/composables/gql/graphql.ts
@@ -1,4 +1,3 @@
-/* eslint-disable */
import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type Maybe = T | null;
export type InputMaybe = Maybe;