Skip to content

Commit

Permalink
PR review - reorder mode options list
Browse files Browse the repository at this point in the history
Signed-off-by: Scott J Dickerson <[email protected]>
  • Loading branch information
sjd78 committed Apr 9, 2024
1 parent efb1ef7 commit 035399f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ export const SetMode: React.FC<ISetMode> = ({ isSingleApp, isModeValid }) => {

const options: SelectOptionProps[] = [
{
value: "binary",
children: "Binary",
value: "source-code-deps",
children: "Source code + dependencies",
},
{
value: "source-code",
children: "Source code",
},
{
value: "source-code-deps",
children: "Source code + dependencies",
value: "binary",
children: "Binary",
},
];

Expand Down

0 comments on commit 035399f

Please sign in to comment.