Files
imphnen-frontend-service/libs/utils/src/hooks/use-register.ts
T

11 lines
285 B
TypeScript
Raw Normal View History

2025-11-25 01:47:56 +07:00
// Registration is handled through GitHub OAuth
// This hook is kept for backward compatibility but is not used
2025-05-26 20:49:57 +07:00
export const useRegister = () => {
return {
2025-11-25 01:47:56 +07:00
register: () => {
console.warn('Registration is handled through GitHub OAuth');
},
isLoading: false,
2025-05-26 20:49:57 +07:00
};
};