Skip to content

Commit

Permalink
fix imports after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-koehler committed Aug 21, 2024
1 parent 0490d2e commit aef686f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
9 changes: 1 addition & 8 deletions packages/core/src/reducers/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,7 @@ import {
import { JsonFormsCore, Reducer, ValidationMode } from '../store';
import Ajv, { ErrorObject } from 'ajv';
import { isFunction } from 'lodash';
import {
composePaths,
createAjv,
isOneOfEnumSchema,
Reducer,
toLodashSegments,
validate,
} from '../util';
import { createAjv, toLodashSegments, validate } from '../util';

export const initState: JsonFormsCore = {
data: {},
Expand Down
12 changes: 4 additions & 8 deletions packages/core/src/reducers/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,18 @@
THE SOFTWARE.
*/

import {
defaultErrorTranslator,
defaultTranslator,
ErrorTranslator,
JsonFormsI18nState,
Translator,
} from '../i18n';
import { defaultErrorTranslator, defaultTranslator } from '../i18n';
import {
I18nActions,
SET_LOCALE,
SET_TRANSLATOR,
UPDATE_I18N,
} from '../actions';
import { Reducer } from '../store/type';
import { JsonFormsI18nState } from '../store';
import { ErrorTranslator, JsonFormsI18nState, Translator } from '../store';
import { UISchemaElement } from '../models';
import { toLodashPath } from '../util';
import { ErrorObject } from 'ajv';

export const defaultJsonFormsI18nState: Required<JsonFormsI18nState> = {
locale: 'en',
Expand Down

0 comments on commit aef686f

Please sign in to comment.