diff --git a/src/pages/HighlightsPage/components/FormHighlights/hooks.tsx b/src/pages/HighlightsPage/components/FormHighlights/hooks.tsx index b7224e4c..a83b35cf 100644 --- a/src/pages/HighlightsPage/components/FormHighlights/hooks.tsx +++ b/src/pages/HighlightsPage/components/FormHighlights/hooks.tsx @@ -266,7 +266,7 @@ export const useHighlightsForm = () => { getSportList() .then((res) => setSports( res - ?.filter((sport: SportType) => sport.id === 3) + ?.filter(({ id }: SportType) => id === 3 || id === 1) .map((sport: SportType) => ({ ...sport, name: sport?.name_eng,