Skip to content

Commit

Permalink
fix(sockets): tweaking options
Browse files Browse the repository at this point in the history
  • Loading branch information
rallieon committed Jul 1, 2021
1 parent b2cd6e3 commit 8a44033
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/haste-game-client/src/socket/socketManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export class SocketManager {
this.socket = io(serverUrl, {
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
auth: { token },
withCredentials: true,
});
this.initializeEvents();
}
Expand Down
1 change: 0 additions & 1 deletion packages/haste-game-server/src/server/socketServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class SocketServer {
cors: {
origin: '*',
methods: ['GET', 'POST'],
credentials: true,
},
});

Expand Down

0 comments on commit 8a44033

Please sign in to comment.