Skip to content

Commit

Permalink
change reinvented story phase
Browse files Browse the repository at this point in the history
  • Loading branch information
SimNed committed Aug 29, 2024
1 parent b80b474 commit 1ce5af9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,14 @@ export const Navigation = (): JSX.Element => {
phase: 2,
disabled: isParent,
},
// ---- PHASE 3 ----
{
label: 'Inventer une histoire',
path: '/creer-une-histoire',
icon: <StoryIcon style={{ fill: 'currentcolor' }} width="1.4rem" />,
phase: 3,
phase: 2,
disabled: isParent,
},
// ---- PHASE 3 ----
{
label: 'Ré-inventer une histoire',
path: '/re-inventer-une-histoire',
Expand Down
2 changes: 1 addition & 1 deletion src/components/activities/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const specificActivityPhase = {
[ActivityType.REACTION]: [PhaseType.TWO],
[ActivityType.ANTHEM]: [],
[ActivityType.CLASS_ANTHEM]: [PhaseType.THREE],
[ActivityType.STORY]: [PhaseType.THREE],
[ActivityType.STORY]: [PhaseType.TWO],
[ActivityType.RE_INVENT_STORY]: [PhaseType.THREE],
};
export const getActivityPhase = (activityType: number, activePhase: number, selectedPhase: number) => {
Expand Down

0 comments on commit 1ce5af9

Please sign in to comment.