Skip to content

Commit

Permalink
fix(#212): 방에서 안나가지는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tnpfldyd committed Dec 12, 2023
1 parent 3b81428 commit 144dbca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class ProfileSpaceController {
spaceUuid,
profileData,
);
if (isSpaceEmpty) this.spacesService.remove(spaceUuid);
if (isSpaceEmpty) return this.spacesService.remove(spaceUuid);
const key = this.profileSpaceService.generateKey(joinData);
return this.profileSpaceService.remove(key);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { CSV_FOLDER } = costomEnv;

type DeleteDataType = {
field: string;
value: string;
value: string | Record<string, string>;
};

export type InsertDataType =
Expand Down

0 comments on commit 144dbca

Please sign in to comment.