refactor: Space routes to normal room routes

This commit is contained in:
Krille 2023-08-13 16:10:31 +02:00
commit e14173688a
No known key found for this signature in database
7 changed files with 185 additions and 198 deletions

View file

@ -38,7 +38,7 @@ class NewSpaceController extends State<NewSpace> {
),
);
if (roomID.error == null) {
context.go('/rooms/spaces/${roomID.result!}');
context.go('/rooms/${roomID.result!}');
}
}