Skip to content

Commit

Permalink
Updated TSP for core
Browse files Browse the repository at this point in the history
  • Loading branch information
simensma-fresh committed Apr 26, 2024
1 parent 6314be5 commit d03bab9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ export const TailingsSummaryPage: FC<InjectedFormProps<ITailingsStorageFacility>

if (tsfGuid) {
if (!props.initialValues.mine_tailings_storage_facility_guid || forceReload) {
await props.fetchTailingsStorageFacility(mineGuid, tsfGuid);
await Promise.all([
props.fetchMineRecordById(mineGuid),
props.fetchTailingsStorageFacility(mineGuid, tsfGuid),
]);

await props.fetchPartyRelationships({
mine_guid: mineGuid,
Expand Down

0 comments on commit d03bab9

Please sign in to comment.