Skip to content

Commit

Permalink
fix: do not cast id to number
Browse files Browse the repository at this point in the history
closes #59
  • Loading branch information
juancarlosfarah committed May 27, 2019
1 parent fdd9052 commit ed1436c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/space/SpaceGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class SpaceGrid extends Component {
variant="contained"
size="large"
color="primary"
id={Number(id)}
id={id}
onClick={() => replace(`/space/${id}`)}
fullWidth
>
Expand Down

0 comments on commit ed1436c

Please sign in to comment.