Skip to content

Commit

Permalink
refactor: lint ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
minjungw00 committed Nov 17, 2024
1 parent 86685c7 commit dbe96f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/crdt/crdt.gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class CrdtGateway implements OnGatewayInit, OnGatewayConnection, OnGatewa
*/
async handleConnection(client: Socket) {
console.log(`ํด๋ผ์ด์–ธํŠธ ์—ฐ๊ฒฐ: ${client.id}`);
const assignedId = this.clientIdCounter++;
const assignedId = (this.clientIdCounter += 1);
this.clientMap.set(client.id, assignedId);
client.emit("assignId", assignedId);
const currentCRDT = this.crdtService.getCRDT().serialize();
Expand Down

0 comments on commit dbe96f4

Please sign in to comment.