Skip to content

Commit

Permalink
fix(tools): remove not allowed property (#55156)
Browse files Browse the repository at this point in the history
  • Loading branch information
gikf committed Jun 11, 2024
1 parent 835b4dd commit 5baca70
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tools/challenge-helper-scripts/create-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ async function createMetaJson(
newMeta.dashedName = block;
newMeta.helpCategory = helpCategory;
newMeta.order = order;
newMeta.superOrder = Object.values(SuperBlocks).indexOf(superBlock) + 1;
newMeta.superBlock = superBlock;
// eslint-disable-next-line @typescript-eslint/no-base-to-string
newMeta.challengeOrder = [{ id: challengeId.toString(), title: 'Step 1' }];
Expand Down
1 change: 0 additions & 1 deletion tools/challenge-helper-scripts/helpers/project-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export type Meta = {
template: string;
required: string[];
superBlock: string;
superOrder: number;
challengeOrder: { id: string; title: string }[];
};

Expand Down

0 comments on commit 5baca70

Please sign in to comment.