Files
gridpilot.gg/apps/website/hooks/league/useCreateLeague.ts
2026-01-14 23:46:04 +01:00

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();
}