diff --git a/bob_party/src/screens/LobbySolo.tsx b/bob_party/src/screens/LobbySolo.tsx index 2701b5e..ad51edc 100644 --- a/bob_party/src/screens/LobbySolo.tsx +++ b/bob_party/src/screens/LobbySolo.tsx @@ -6,6 +6,8 @@ import { TopBar } from '../components/TopBar'; import { BotBar } from '../components/BotBar'; import { Conversation } from '../core/conversation'; import { ButtonGameTypeChoice } from '../components/ButtonGameTypeChoice'; +import { MANAGER_MATCH } from '../../App'; +import { useMatchStore } from '../context/matchContext'; @@ -15,6 +17,7 @@ function LobbySolo(props: { navigation: any; }) { const { navigation } = props + const match = useMatchStore().match; return ( @@ -24,6 +27,10 @@ function LobbySolo(props: { navigation: any; }) { onPress={() => navigation.navigate('GameChoice')} /> + + ); }