Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanKiral committed Aug 3, 2023
1 parent b312606 commit 3ed3d6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Migrations/01_sample_init_createBlogType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const migration: MigrationModule = {
};

const BuildBlogPostTypeData = (
builder: ContentTypeElementsBuilder
builder: ContentTypeElementsBuilder,
): ContentTypeModels.IAddContentTypeData => {
return {
name: "Blog",
Expand Down
2 changes: 1 addition & 1 deletion Migrations/03_sample_migration_createAuthorType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const migration: MigrationModule = {
};

const BuildAuthorTypeData = (
builder: ContentTypeElementsBuilder
builder: ContentTypeElementsBuilder,
): ContentTypeModels.IAddContentTypeData => {
return {
name: "Author",
Expand Down

0 comments on commit 3ed3d6f

Please sign in to comment.