9 lines
306 B
TypeScript
9 lines
306 B
TypeScript
import { useCreateLeagueWithBlockers } from './useCreateLeagueWithBlockers';
|
|
|
|
/**
|
|
* @deprecated Use useCreateLeagueWithBlockers instead
|
|
* This wrapper maintains backward compatibility while using the new blocker-aware hook
|
|
*/
|
|
export function useCreateLeague() {
|
|
return useCreateLeagueWithBlockers();
|
|
} |