Skip to content

Commit

Permalink
quick fix for activity invite
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-Wei-Jie committed Nov 3, 2024
1 parent 7758e6b commit 6cc9d1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/.h2.server.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#H2 Server Properties
#Wed Oct 30 23:33:01 SGT 2024
#Sun Nov 03 18:42:49 SGT 2024
0=JHipster H2 (Disk)|org.h2.Driver|jdbc\:h2\:file\:./target/h2db/db/scaleup|scaleup
webAllowOthers=true
webPort=8092
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const ActivityInvite = () => {

// Filter the activityInviteList on the client-side
const filteredActivityInviteList = activityInviteList.filter(
invite => invite.inviteeProfile.id === currentUser.id.toString() || invite.createdBy === currentUser.login,
invite => invite.inviteeProfile.id === currentUser.id || invite.createdBy === currentUser.login,
);

// Fetch Activity Name
Expand Down

0 comments on commit 6cc9d1c

Please sign in to comment.