#48 - heroku deployment (#70)

* test

* #48 - deployment

* #48 - fixes

* #48 - prod assets

* #48 - readme for heroku deployment

* #48 - fix

* #48 - ecs fix

* #48 - fix

* #48 - fix

* #48 - cr fix

* #48 - remove predis dependency
This commit is contained in:
Adrian Hopek
2022-03-15 14:46:42 +01:00
committed by GitHub
parent db4be79c91
commit 6d62c8b776
18 changed files with 87 additions and 36 deletions

View File

@@ -125,7 +125,7 @@ const statuses = [
export function useStatusInfo() {
const getStatues = () => statuses
const findStatus = value => statuses.find(month => month.value === value)
const findStatus = value => statuses.find(status => status.value === value)
return {
getStatues,