Skip to content

Commit

Permalink
fixup! fixup! Split RUIProvider into two
Browse files Browse the repository at this point in the history
  • Loading branch information
mbohal committed Dec 20, 2024
1 parent 2b0daaa commit 99dc33f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/providers/translations/TranslationsProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import PropTypes from 'prop-types';
import React, {
useContext,
} from 'react';
import defaultTranslations from '../../translations/en';
import { mergeDeep } from '../../utils/mergeDeep';
import TranslationsContext from './TranslationsContext';

Expand All @@ -23,7 +22,7 @@ const TranslationsProvider = ({

TranslationsProvider.defaultProps = {
children: null,
translations: defaultTranslations,
translations: {},
};

TranslationsProvider.propTypes = {
Expand Down

0 comments on commit 99dc33f

Please sign in to comment.