Skip to content

Commit

Permalink
fixup! feat(kubernetes): add allowSubmissionOfConsensusSequences to…
Browse files Browse the repository at this point in the history
… the config
  • Loading branch information
fengelniederhammer committed Jan 17, 2025
1 parent c6ce1d8 commit 722d750
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions website/src/types/referencesGenomes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ const namedSequence = z.object({
export type NamedSequence = z.infer<typeof namedSequence>;

export const referenceGenomes = z.object({
nucleotideSequences: z.array(namedSequence).refine((data) => data.length > 0, {
message: 'Array must have at least one entry',
}),
nucleotideSequences: z.array(namedSequence),
genes: z.array(namedSequence),
});
export type ReferenceGenomes = z.infer<typeof referenceGenomes>;
Expand Down

0 comments on commit 722d750

Please sign in to comment.