Modern Front-End Development for Rails: typo in code (p 74)

@noelrappin

The code for Venue has a typo, the current text is:

const rowNumbers = Array.from(Array(props.seatsPerRow).keys())

But the working code for the example is with rows instead of seatsPerRow. The right code is below

const rowNumbers = Array.from(Array(props.rows).keys())