chrisdesilva / pickup

App for finding nearby basketball courts for pickup games
MIT License
14 stars 28 forks source link

fix database import in Map.js #50

Closed kriswep closed 4 years ago

kriswep commented 4 years ago

Noticed the db import in Map.js was broken.

fire.js expots the databse as a named export, so it should be imported as such.

This fixes #45

kriswep commented 4 years ago

Digged a little deeper and noticed that db was the default export up until recently (instead of storage). So declared db as default again, which fixes the problem as well.

chrisdesilva commented 4 years ago

Great catch! Thanks a ton for the PR!