Switch collections to .go() instead of .push()

This commit is contained in:
Shawn 2024-01-17 10:48:20 -07:00
parent c45e1fc77e
commit c450c71d05

View File

@ -9,7 +9,7 @@ class _CollectionListCard extends StatelessWidget with GetItMixin {
final String fromId;
void _showDetails(BuildContext context, CollectibleData collectible) {
context.push(ScreenPaths.artifact(collectible.artifactId));
context.go(ScreenPaths.artifact(collectible.artifactId));
Future.delayed(300.ms).then((_) => collectiblesLogic.setState(collectible.id, CollectibleState.explored));
}