Skip to content

Commit

Permalink
fix(Hide): Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
allyssonsantos committed May 21, 2019
1 parent 4cff20a commit a20f0b8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions components/Grid/sub-components/Hide.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ const Hide = styled.div`
${({ theme: { breakpoints }, xsmall, small, medium, large, xlarge }) => {
let style = '';
const hideBreapoint = hideQueries(breakpoints);
const hideBreakpoint = hideQueries(breakpoints);
style += xsmall ? hideBreapoint.xsmall() : '';
style += xlarge ? hideBreapoint.xlarge() : '';
style += small ? hideBreapoint.small() : '';
style += medium ? hideBreapoint.medium() : '';
style += large ? hideBreapoint.large() : '';
style += xsmall ? hideBreakpoint.xsmall() : '';
style += xlarge ? hideBreakpoint.xlarge() : '';
style += small ? hideBreakpoint.small() : '';
style += medium ? hideBreakpoint.medium() : '';
style += large ? hideBreakpoint.large() : '';
return style;
}}
Expand Down

0 comments on commit a20f0b8

Please sign in to comment.