feat(events): add event join functionality with no kyc

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2026-02-07 17:05:54 +08:00
parent c43c37a127
commit eddc23a2e8
8 changed files with 128 additions and 22 deletions

View File

@@ -0,0 +1,8 @@
import { useMutation } from '@tanstack/react-query';
import { postEventJoinMutation } from '@/client/@tanstack/react-query.gen';
export function useJoinEvent() {
return useMutation({
...postEventJoinMutation(),
});
}