Skip to content

Commit

Permalink
Merge pull request codestates-seb#372 from shimdokite/develop
Browse files Browse the repository at this point in the history
[FE] πŸ› μ±„νŒ… μ‹œ μ½˜μ†”μ— 토큰 좜λ ₯λ˜λŠ” 이슈 μˆ˜μ •
  • Loading branch information
nalsae authored Jan 9, 2024
2 parents 01809fb + eac984c commit f478d43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/inquiry/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function Chat({ role }: ChatProps) {

useEffect(() => {
client.current = Stomp.over(() => new SockJS(`${url}/wss`));

client.current.debug = () => {};
client.current.connect(
{
Authorization: accessToken,
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/inquiry/NewChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function NewChat({ role }: NewChatProps) {
useEffect(() => {
if (roomId) {
client.current = Stomp.over(() => new SockJS(`${url}/wss`));

client.current.debug = () => {};
client.current.connect(
{
Authorization: accessToken,
Expand Down

0 comments on commit f478d43

Please sign in to comment.