Skip to content

Commit

Permalink
Merge pull request #138 from galio-org/hotfixes-0.6.2
Browse files Browse the repository at this point in the history
Hotfixes 0.6.2
  • Loading branch information
palingheorghe authored Oct 13, 2019
2 parents dcaaf0c + 2383721 commit 5a3cc64
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "galio-framework",
"main": "src/index.js",
"version": "0.6.1",
"version": "0.6.2",
"files": [
"src/"
],
Expand Down
5 changes: 3 additions & 2 deletions src/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ function Card({
imageStyle,
location,
locationColor,
shadow,
shadow,
style,
styles,
title,
titleColor,
theme,
...rest
...props
}) {
function renderImage() {
if (!image) return null;
Expand Down
1 change: 0 additions & 1 deletion src/Radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ function Radio({
radioInnerStyle,
styles,
theme,

}) {
const [checked, setChecked] = React.useState(initialValue);
React.useEffect(() => onChange(checked), [checked]);
Expand Down
1 change: 1 addition & 0 deletions src/Text.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ function Typography({
italic,
center,
children,
style,

This comment has been minimized.

Copy link
@ermalsh

ermalsh Oct 14, 2019

Breaks the JS build, 'style' already declared at the top of this array object.

This comment has been minimized.

Copy link
@palingheorghe

palingheorghe Oct 15, 2019

Author Collaborator

Thank you for this!

styles,
theme,
...rest
Expand Down

0 comments on commit 5a3cc64

Please sign in to comment.