Skip to content

Commit

Permalink
fix(theme): useThemeProvider() imports
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelodelain committed Mar 26, 2024
1 parent 409fac1 commit 652d1d2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions composables/use-theme-provider.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { provide } from 'vue'
import type { ComputedRef, InjectionKey } from 'vue'
import { type Theme, useTheme } from '~/composables/use-theme'
import type { ThemeOptions } from '~/composables/use-theme'
import type { Theme, ThemeOptions } from '~/composables/use-theme'

export const THEME_PROVIDER_KEY: InjectionKey<ComputedRef<Theme | 'light'>> = Symbol('themeProviderKey')

Expand Down

0 comments on commit 652d1d2

Please sign in to comment.