Skip to content

Commit

Permalink
fix: new event page
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikhaugstulen committed Aug 7, 2024
1 parent f9ad7f6 commit 5a9e487
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ const renderComponent = (
);
};

const getPropsForPlugin = ({ program, enrollmentId, teiId, orgUnitId, programStage, eventId }) => ({
const getPropsForPlugin = ({ program, enrollmentId, teiId, orgUnitId, programStage, eventId, stageId }) => ({
programId: program.id,
enrollmentId,
teiId,
orgUnitId,
programStageId: programStage?.id,
programStageId: stageId ?? programStage?.id,
eventId,
});

Expand Down

0 comments on commit 5a9e487

Please sign in to comment.