Skip to content

Commit 85ce52f

Browse files
committed
fix backend build
1 parent e3e6134 commit 85ce52f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

back/src/dals/room/repository/room.repository.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ const appendRoomContent = async (newRoomInfo: RoomInfo): Promise<void> => {
3434
}
3535
};
3636

37-
const replaceRoomContent = async (newRoomInfo: RoomInfo): Promise<void> =>
37+
const replaceRoomContent = async (newRoomInfo: RoomInfo): Promise<void> => {
3838
await RoomContext.updateOne(
3939
{ room: newRoomInfo.room },
4040
{ content: newRoomInfo.content }
4141
);
42+
};
4243

4344
const updateRoomContent = async (
4445
newRoomInfo: RoomInfo,

0 commit comments

Comments
 (0)