Skip to content

Commit

Permalink
feat: change min version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreiffers committed Nov 9, 2023
1 parent 999b56d commit c1944bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const createConcept = catalogId =>
ansvarligVirksomhet: {
id: catalogId
},
versjonsnr: { major: 0, minor: 0, patch: 1 }
versjonsnr: { major: 0, minor: 1, patch: 0 }
} as Concept);

const ConceptRegistrationPagePure: FC<Props> = ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export const schema = Yup.object().shape({
);
})
.catch(() => false)
: compareVersion({ major: 0, minor: 0, patch: 0 }, value as any) < 0
: compareVersion({ major: 0, minor: 1, patch: 0 }, value as any) < 0
)
.shape({
major: Yup.number(),
Expand Down

0 comments on commit c1944bd

Please sign in to comment.