Removed useReport hook. Journey styles.

This commit is contained in:
Mike Cao 2025-06-07 00:20:57 -07:00
parent 2af95b5802
commit d4bc72e90b
4 changed files with 8 additions and 12 deletions

View file

@ -49,7 +49,6 @@ export * from './useMessages';
export * from './useModified';
export * from './usePagedQuery';
export * from './useRegionNames';
export * from './useReport';
export * from './useSticky';
export * from './useNavigation';
export * from './useTimezone';

View file

@ -1,6 +0,0 @@
import { useContext } from 'react';
import { ReportContext } from '@/app/(main)/reports/[reportId]/Report';
export function useReport() {
return useContext(ReportContext);
}