Skip to content

Commit

Permalink
fix(Container): Undefined strategy to merge config
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisGV04 committed Mar 13, 2024
1 parent b34ff8a commit dc9a0d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/components/layout/Container.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { twJoin, twMerge } from 'tailwind-merge';
import { toRef, withDefaults } from 'vue';
const config = mergeConfig<typeof container>(
appConfig.ui.container.strategy,
appConfig.ui.container,
appConfig.ui?.container?.strategy,
appConfig.ui?.container,
container,
);
type UiConfig = Partial<typeof config> & { strategy?: Strategy };
Expand Down

0 comments on commit dc9a0d8

Please sign in to comment.