diff --git a/.husky/pre-commit b/.husky/pre-commit old mode 100644 new mode 100755 index 98475b50..51595d22 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1 +1 @@ -pnpm test +pnpm lint:fix && pnpm format && pnpm type-check && pnpm test diff --git a/src/pages/mentorship/index.tsx b/src/pages/mentorship/index.tsx index b6eeefa5..7a9f2116 100644 --- a/src/pages/mentorship/index.tsx +++ b/src/pages/mentorship/index.tsx @@ -11,7 +11,11 @@ import { Title, } from '@components'; import { useIsMobile } from '@utils/theme-utils'; -import { FooterResponse, MentorshipProgrammeData, FeedbackItem } from '@utils/types'; +import { + FooterResponse, + MentorshipProgrammeData, + FeedbackItem, +} from '@utils/types'; import { fetchData } from 'lib/api'; import theme from 'theme';