Skip to content

Commit

Permalink
fix(idea/frontend): program page tabs order (#1618)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitayutanov authored Aug 14, 2024
1 parent 6130b65 commit d7826a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions idea/frontend/src/pages/program/program.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ const Program = () => {
))}

{tabIndex === 1 && <ProgramMessages programId={programId} />}
{tabIndex === 2 && <ProgramVouchers programId={programId} />}
{tabIndex === 3 && !isSailsLoading && <ProgramEvents programId={programId} sails={sails} />}
{tabIndex === 2 && !isSailsLoading && <ProgramEvents programId={programId} sails={sails} />}
{tabIndex === 3 && <ProgramVouchers programId={programId} />}
</div>
</div>
);
Expand Down

0 comments on commit d7826a0

Please sign in to comment.