codefordenver / partner-finder

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

galbwe commented 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 to let.

Closes #157