Skip to content

Commit

Permalink
fix: 修复prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Rococoscarlet committed Dec 3, 2024
1 parent a037253 commit 71131b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config-provider/useConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function useConfig<T extends keyof GlobalConfigProvider>(
*/
export const provideConfig = (props: ConfigProviderProps) => {
const defaultData = cloneDeep(defaultGlobalConfig);
const mergedGlobalConfig = computed(() => ({...mergeWith(defaultData, props.globalConfig)}));
const mergedGlobalConfig = computed(() => ({ ...mergeWith(defaultData, props.globalConfig) }));

provide(configProviderInjectKey, mergedGlobalConfig);

Expand Down

0 comments on commit 71131b6

Please sign in to comment.