BUGFIX: "Do something else simultaneously" navigates to gym/university instead of City (#2613)

This commit is contained in:
Lee Stutzman
2026-04-03 23:37:34 +01:00
committed by GitHub
parent 2819947378
commit 15d463d583

View File

@@ -262,10 +262,10 @@ export function WorkInProgressRoot(): React.ReactElement {
buttons: { buttons: {
cancel: () => { cancel: () => {
Player.finishWork(true); Player.finishWork(true);
Router.toPage(Page.City); Router.toPage(Page.Location, { location: Locations[classWork.location] });
}, },
unfocus: () => { unfocus: () => {
Router.toPage(Page.City); Router.toPage(Page.Location, { location: Locations[classWork.location] });
Player.stopFocusing(); Player.stopFocusing();
}, },
}, },