When user saves course edits, return to details page (#5012)

This commit is contained in:
Kelrap 2025-12-31 11:36:38 -05:00 committed by GitHub
parent 8e888dde58
commit f3dbf86ce2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,6 +103,10 @@ class EditCourseController extends State<EditCourse> {
),
);
}
if (!resp.isError) {
Navigator.of(context).pop();
}
}
Future<void> _setAvatarAction() async {