Using an open dataset with registered colorado business to build a tool that manages outreach to potential CFD partners.
3
stars
14
forks
source link
Use let instead of const to define variable that is reassigned later #158
Closed
galbwe closed 3 years ago
Using the search bar was crashing the home page because we used
const
to define a variable, and then reassigned it later.Changed
const
tolet
.Closes #157