Skip to content

Commit

Permalink
fix inter user activity feed (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBigBoss authored Jul 14, 2024
1 parent 7a672fa commit 9d38716
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function useInterUserActivityFeed(params: {
.or(
`and(from_user->send_id.eq.${currentUserId},to_user->send_id.eq.${otherUserId}), and(from_user->send_id.eq.${otherUserId},to_user->send_id.eq.${currentUserId})`
)
.in('event_name', ['send_account_transfers', 'send_account_receives '])
.in('event_name', ['send_account_transfers', 'send_account_receives'])
.order('created_at', { ascending: false })
.range(from, to)
const { data, error } = await request
Expand Down

0 comments on commit 9d38716

Please sign in to comment.