diff --git a/apps/stage-web/src/composables/theme-color.ts b/apps/stage-web/src/composables/theme-color.ts index 19ec46ea8..db51f39da 100644 --- a/apps/stage-web/src/composables/theme-color.ts +++ b/apps/stage-web/src/composables/theme-color.ts @@ -1,6 +1,6 @@ import type { Ref } from 'vue' -import type CustomizedBackground from '../components/Backgrounds/CustomizedBackground.vue' +import type { BackgroundProvider } from '../components/Backgrounds' import type { BackgroundItem } from '../stores/background' import Color from 'colorjs.io' @@ -61,7 +61,7 @@ export function useBackgroundThemeColor({ selectedOption, sampledColor, }: { - backgroundSurface: Ref | undefined | null> + backgroundSurface: Ref | undefined | null> selectedOption: Ref sampledColor: Ref }) {