Skip to content

Commit

Permalink
fix graphical bug on last pick autopick
Browse files Browse the repository at this point in the history
  • Loading branch information
HerveH44 committed Feb 19, 2019
1 parent e8168b5 commit 66a9a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/src/game/Game.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class Game extends Component {

const CardsZone = () => {
const pack
= Object.keys(Zones.pack).length
= !App.state.isGameFinished && Object.keys(Zones.pack).length
? <Grid key={"pack"} zones={["pack"]} />
: <div key={"pack"}/>;
const props = { zones: ["main", "side", "junk"] };
Expand Down

0 comments on commit 66a9a73

Please sign in to comment.