diff --git a/package.json b/package.json
index 20a5eb1c..d31d1a0e 100644
--- a/package.json
+++ b/package.json
@@ -13,7 +13,8 @@
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"start:auth": "REACT_APP_TYPE=auth-service react-scripts start",
- "test:auth": "REACT_APP_TYPE=auth-service react-scripts test"
+ "test:auth": "REACT_APP_TYPE=auth-service react-scripts test",
+ "facr": "REACT_APP_CLIENT=facr react-scripts start"
},
"dependencies": {
"@stripe/react-stripe-js": "^1.4.0",
diff --git a/src/config/lexics/indexLexics.tsx b/src/config/lexics/indexLexics.tsx
index c7e04868..79984947 100644
--- a/src/config/lexics/indexLexics.tsx
+++ b/src/config/lexics/indexLexics.tsx
@@ -72,6 +72,8 @@ const preferencesPopupLexics = {
all: 15449,
apply: 15117,
my_preferences: 15087,
+ my_teams: 16685,
+ my_tournaments: 16686,
search: 15127,
sport_types: 15088,
}
diff --git a/src/features/Menu/index.tsx b/src/features/Menu/index.tsx
index 1999717b..ed40518c 100644
--- a/src/features/Menu/index.tsx
+++ b/src/features/Menu/index.tsx
@@ -16,7 +16,7 @@ import {
export const Menu = () => {
const { openPopup } = usePreferencesStore()
- const { openTournamentsPopup } = useTournamentsPopup()
+ const { open } = useTournamentsPopup()
const isHomePage = useRouteMatch(PAGES.home)?.isExact
return (
@@ -24,7 +24,7 @@ export const Menu = () => {
{isMobileDevice && }
{
isHomePage && !client.disabledPreferences && (
-