Skip to content

Commit

Permalink
πŸ› fix: 심사 μœ„ν•΄μ„œ ν•„ν„° λ‹€ 보이게 μ˜€ν”ˆ
Browse files Browse the repository at this point in the history
  • Loading branch information
tmddus2 committed Aug 28, 2024
1 parent 3882ff3 commit 9c19490
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ public List<LikedFilterDto> getLikedFilters(Long userId) {
}

private static boolean checkAccess(Membership membership, Membership filter) {
return filter.compareTo(membership) > 0 ? false : true;
//return filter.compareTo(membership) > 0 ? false : true;
return true;
}
}

0 comments on commit 9c19490

Please sign in to comment.