Skip to content

Commit

Permalink
Merge pull request #313 from kookmin-sw/#312-match-send-move
Browse files Browse the repository at this point in the history
[BUG] 요청 보낸 후 보낸 요청 페이지로 이동하지 않음 #312
  • Loading branch information
chaeyeonKong authored May 22, 2024
2 parents 1508be2 + d52c64c commit e783531
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/lib/widgets/choose_purpose.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ class _ChoosePurposeState extends State<ChoosePurpose> {

Map<String, dynamic> response =
await matchRequest(senderId, receiverId, _selectedIndex!);

Navigator.of(context).pop();
Navigator.of(context).pop();
selectedIndexProvider.selectedIndex = 1;
} catch (e) {
print(e);
Expand Down

0 comments on commit e783531

Please sign in to comment.