Skip to content

Commit

Permalink
fix: import default from redux-thunk
Browse files Browse the repository at this point in the history
feat: add missing dev env vars for fam
  • Loading branch information
Ricardo Campos committed Jan 10, 2024
1 parent 618e350 commit 360dcc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ version: '3.9'

x-frontend: &frontend
environment:
VITE_ZONE: TEST
VITE_ZONE: DEV
VITE_USER_POOLS_ID: ca-central-1_t2HSZBHur
VITE_USER_POOLS_WEB_CLIENT_ID: 3g6n2ha1loi4kp1jhaq359vrvb
healthcheck:
test: curl http://localhost:3000"
interval: 15s
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/store.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createStore, combineReducers, applyMiddleware } from 'redux'
import thunk from 'redux-thunk'
import { thunk } from 'redux-thunk'
import { composeWithDevTools } from '@redux-devtools/extension'
import type { CognitoUserSession } from 'amazon-cognito-identity-js'
import { userDetailsReducer } from './reducers/userReducer'
Expand Down

0 comments on commit 360dcc2

Please sign in to comment.