Skip to content

Commit

Permalink
fix: put logined user on top of the list
Browse files Browse the repository at this point in the history
  • Loading branch information
aiaiaiai1 committed Jul 25, 2024
1 parent e1fe7f5 commit 079194e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gymmi/service/WorkspaceService.java
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public InsideWorkspaceResponse enterWorkspace(User logiendUser, Long workspaceId
return InsideWorkspaceResponse.builder()
.workspace(workspace)
.achievementScore(achievementScore)
.sortedWorkers(sortedWorkers)
.sortedWorkers(workers)
.workerRanks(workerRanks)
.loginedUser(logiendUser)
.build();
Expand Down

0 comments on commit 079194e

Please sign in to comment.