Files
imphnen-frontend-service/libs/utils/src/hooks/use-register.ts
T
2025-11-25 01:47:56 +07:00

11 lines
285 B
TypeScript

// Registration is handled through GitHub OAuth
// This hook is kept for backward compatibility but is not used
export const useRegister = () => {
return {
register: () => {
console.warn('Registration is handled through GitHub OAuth');
},
isLoading: false,
};
};