We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adad6fa commit 5abab9dCopy full SHA for 5abab9d
2 files changed
Launcher/lib/features/session/dialogs/join_game_dialog.dart
@@ -97,7 +97,6 @@ class JoinGameDialog extends StatelessWidget {
97
KyberButton(
98
text: 'Cancel Joining',
99
onPressed: () {
100
- Navigator.of(context).pop();
101
context.read<SessionCubit>().cancelJoinGame();
102
},
103
),
Launcher/lib/features/session/providers/session_cubit.dart
@@ -129,7 +129,7 @@ class SessionCubit extends Cubit<SessionState> {
129
}
130
131
Future<void> cancelJoinGame() async {
132
- //await _service.partyServiceClient.cancelJoinGame(.new());
+ await _service.partyServiceClient.cancelJoinGame(.new());
133
134
135
void readyUp() {
0 commit comments