Ignore keywords field

This commit is contained in:
Elio Struyf
2022-06-28 14:48:10 +02:00
parent 6c7567a15c
commit 830fc550bd
2 changed files with 2 additions and 1 deletions
@@ -12,7 +12,7 @@ export interface IContentTypeValidatorProps {
metadata: IMetadata
}
const fieldsToIgnore = [`filePath`, `articleDetails`, `slug`];
const fieldsToIgnore = [`filePath`, `articleDetails`, `slug`, `keywords`];
export const ContentTypeValidator: React.FunctionComponent<IContentTypeValidatorProps> = ({ fields, metadata}: React.PropsWithChildren<IContentTypeValidatorProps>) => {