Skip to content

Commit

Permalink
fix redis address in network compose
Browse files Browse the repository at this point in the history
  • Loading branch information
IkeHunter committed Nov 7, 2024
1 parent a2cab52 commit e0f5a90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:
- DB_PASS=devpass
- DB_NAME=devdatabase

- REDIS_HOST=jbx-network-redis
- REDIS_HOST=jbx-network-redis-fe
- REDIS_PORT=6379
ports:
- 9000:9000
Expand Down
2 changes: 1 addition & 1 deletion src/store/user/userActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { unwrapResult } from '@reduxjs/toolkit'
import { Network } from 'src/network'
import { generateLocalData, isUser } from 'src/utils'
import { store } from '../store'
import { userSlice } from './userSlice'
import { userSlice } from './userSlice'

Check warning on line 5 in src/store/user/userActions.ts

View workflow job for this annotation

GitHub Actions / eslint-check

Delete `·`
import { thunkFetchUserInfo, thunkLoginUser } from './userThunks'

const { logout, set, update } = userSlice.actions
Expand Down

0 comments on commit e0f5a90

Please sign in to comment.