Skip to content

Commit

Permalink
ASL-4247 - fixed imports to use correct scopes and names
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrowsell86 committed Mar 30, 2023
1 parent 241059e commit 34aaf3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/acronym/index.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import dictionary from '@asl/dictionary';
import dictionary from '@ukhomeoffice/asl-dictionary';

const Acronym = ({
children
Expand Down
2 changes: 1 addition & 1 deletion src/acronym/index.spec.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { render } from 'enzyme';
import Acronym from './';
import dictionary from '@asl/dictionary';
import dictionary from '@ukhomeoffice/asl-dictionary';

describe('<Acronym />', () => {
Object.keys(dictionary).forEach(key => {
Expand Down
2 changes: 1 addition & 1 deletion src/species-selector/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import pick from 'lodash/pick';
import { InputWrapper } from '@ukhomeoffice/react-components';
import { MultiInput, Fieldset } from '../';
import PIL_GROUPS from './species';
import { projectSpecies as PROJECT_GROUPS } from '@asl/constants';
import { projectSpecies as PROJECT_GROUPS } from '@ukhomeoffice/asl-constants';

const GROUP_LABELS = {
SA: 'Small animals',
Expand Down

0 comments on commit 34aaf3d

Please sign in to comment.