Skip to content

Commit

Permalink
Fixed MM page loading despite getting error
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Feb 17, 2024
1 parent 99e7710 commit 05ffcdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/src/Page/MasterMissionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const MasterMissionPage = (props: { region: Region; masterMissionId: number }) =
})
.catch((e) => {
if (controller.signal.aborted) return;
setLoadStatus({ loading: true, error: e });
setLoadStatus({ loading: false, error: e });
});
return () => {
controller.abort();
Expand Down

0 comments on commit 05ffcdb

Please sign in to comment.