Skip to content

Commit

Permalink
fix: import error of commons components
Browse files Browse the repository at this point in the history
  • Loading branch information
yvmunayev committed Aug 30, 2020
1 parent dd4d7eb commit 958b6fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ColorPicker/variants/colorsFixed.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useRef, useImperativeHandle } from 'react';
import { DefaultColors } from '../components';
import { DefaultColors } from '../commons';

const ColorsFixed = React.forwardRef((_props, ref) => {
const colorsRef = useRef();
Expand Down
2 changes: 1 addition & 1 deletion src/components/ColorPicker/variants/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
StyledHexColorContainer,
StyledRgbaColorContainer,
} from './styled';
import { Saturation, Hue, Alpha, Preview, HexColor, RgbaColor, DefaultColors } from '../components';
import { Saturation, Hue, Alpha, Preview, HexColor, RgbaColor, DefaultColors } from '../commons';
import RenderIf from '../../RenderIf';

const Default = React.forwardRef((_props, ref) => {
Expand Down

0 comments on commit 958b6fd

Please sign in to comment.