Skip to content

Commit

Permalink
Merge pull request #106 from abyss-s/fix/map
Browse files Browse the repository at this point in the history
fix: 산책 현황 url 링크 수정
  • Loading branch information
abyss-s authored Aug 1, 2024
2 parents d824852 + c620b68 commit 90ee4fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Map/MapStatus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const MapStatus = () => {
const newSocket = new WebSocket(
"wss://" +
process.env.REACT_APP_BACKEND_DOMAIN +
`/ws/walk-status/${roomId}/locations`,
`/ws/walkroom/${roomId}/locations`,
);

newSocket.onopen = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Map/MapStatusUser.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ const MapStatusUser = () => {
const newSocket = new WebSocket(
"wss://" +
process.env.REACT_APP_BACKEND_DOMAIN +
`/ws/walk-status/${roomId}/locations`,
`/ws/walkroom/${roomId}/locations`,
);

newSocket.onopen = () => {
Expand Down

0 comments on commit 90ee4fc

Please sign in to comment.