pull/795/head
ggurdin 2 years ago
parent d50d623f53
commit 4f8619faec

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 3.2 MiB

@ -478,7 +478,9 @@ class _SpaceViewState extends State<SpaceView> {
),
// #Pangea
// onTap: () => _onJoinSpaceChild(spaceChild),
onTap: () => context.go('/spaces/${spaceChild.roomId}'),
onTap: () => context.push(
'/spaces/${spaceChild.roomId}',
),
// Pangea#
);
}

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

Loading…
Cancel
Save