diff --git a/src/additional-components/Background/Background.vue b/src/additional-components/Background/Background.vue index 675ff554..4a2ec860 100644 --- a/src/additional-components/Background/Background.vue +++ b/src/additional-components/Background/Background.vue @@ -16,7 +16,6 @@ const props = withDefaults(defineProps(), { const defaultColors: Record = { [BackgroundVariant.Dots]: '#81818a', [BackgroundVariant.Lines]: '#eee', - [BackgroundVariant.None]: '#eee', } const { store } = useVueFlow() diff --git a/src/types/flow.ts b/src/types/flow.ts index 6703d900..de4e2757 100644 --- a/src/types/flow.ts +++ b/src/types/flow.ts @@ -56,7 +56,6 @@ export type SnapGrid = [number, number] export enum BackgroundVariant { Lines = 'lines', Dots = 'dots', - None = 'none', } export interface SelectionRect extends Rect {