diff --git a/src/content/content.gql.schema.ts b/src/content/content.gql.schema.ts index 4d5ec44..a0ebe36 100644 --- a/src/content/content.gql.schema.ts +++ b/src/content/content.gql.schema.ts @@ -28,7 +28,6 @@ export const contentGqlSchema = /* GraphQL */ ` image: String position: String width: String - imageRef: String categories: String tags: String } @@ -55,7 +54,6 @@ export const contentGqlSchema = /* GraphQL */ ` image: String position: String width: String - imageRef: String categories: String tags: String } diff --git a/src/content/content.spec.ts b/src/content/content.spec.ts index 3f70077..51b6c9f 100644 --- a/src/content/content.spec.ts +++ b/src/content/content.spec.ts @@ -36,7 +36,6 @@ it('should normalize invalid composition', () => { image: '', width: '100%', position: 'top', - imageRef: '', categories: '', tags: '', }, diff --git a/src/content/mappers.ts b/src/content/mappers.ts index 1c5efc2..ac2f588 100644 --- a/src/content/mappers.ts +++ b/src/content/mappers.ts @@ -12,7 +12,6 @@ export const createEmptyModule = (): ContentModule => ({ width: '100%', categories: '', tags: '', - imageRef: '', }) export const createEmptyComposition = (): ViewComposition => ({ diff --git a/src/content/types.ts b/src/content/types.ts index 1c216ba..b0bde73 100644 --- a/src/content/types.ts +++ b/src/content/types.ts @@ -21,7 +21,6 @@ export type ContentModule = { image: string position: 'top' | 'bottom' | 'left' | 'right' width: string - imageRef: string categories: string tags: string }