Skip to content

Commit

Permalink
Fix lint problems and missed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
samwhale committed Apr 1, 2022
1 parent a707e62 commit ce0d39e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { theme as dsTheme } from '@googleforcreators/design-system';
/**
* Internal dependencies
*/
import { ThumbnailWrapper } from '..';
import ThumbnailWrapper from '../thumbnailWrapper';
import { MAX_THUMBNAILS_DISPLAYED } from '../../../../checklistCard';

const Wrapper = ({ children }) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ import { canSupportMultiBorder } from '@googleforcreators/masks';
*/
import { StackableGroup, StackableInput } from '../../../form/stackable';
import Tooltip from '../../../tooltip';
import { focusStyle, useCommonObjectValue } from '../../shared';
import { focusStyle } from '../../shared/styles';
import { useCommonObjectValue } from '../../shared';
import { MULTIPLE_VALUE, MULTIPLE_DISPLAY_VALUE } from '../../../../constants';
import { DEFAULT_BORDER } from './shared';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,8 @@ import { clamp } from '@googleforcreators/units';
*/
import { useFont } from '../../../../app/font';
import { Row, usePresubmitHandler } from '../../../form';
import {
focusStyle,
getCommonValue,
inputContainerStyleOverride,
} from '../../shared';
import { focusStyle, inputContainerStyleOverride } from '../../shared/styles';
import { getCommonValue } from '../../shared';
import StoryFontPicker from '../../../storyFontPicker';
import { MULTIPLE_VALUE, MULTIPLE_DISPLAY_VALUE } from '../../../../constants';
import useRichTextFormatting from './useRichTextFormatting';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,8 @@ import { clamp } from '@googleforcreators/units';
*/
import { useFont } from '../../../../app/font';
import { Row, usePresubmitHandler } from '../../../form';
import {
focusStyle,
getCommonValue,
inputContainerStyleOverride,
} from '../../shared';
import { focusStyle, inputContainerStyleOverride } from '../../shared/styles';
import { getCommonValue } from '../../shared';
import { MULTIPLE_VALUE, MULTIPLE_DISPLAY_VALUE } from '../../../../constants';
import useRichTextFormatting from './useRichTextFormatting';

Expand Down
1 change: 1 addition & 0 deletions packages/story-editor/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export * from './components/panels/panel';
export * from './components/panels/shared';
export * from './components/checklist';
export { default as FontPicker } from './components/fontPicker';
export { focusStyle } from './components/panels/shared/styles';
export * from './components/checklistCard';
export * from './app/currentUser';

Expand Down

0 comments on commit ce0d39e

Please sign in to comment.