Skip to content

Commit

Permalink
[1111] Improve WebPageJsonLdProps by extending JsonLdProps (#1114)
Browse files Browse the repository at this point in the history
  • Loading branch information
snelsi committed Dec 3, 2022
1 parent d96d58d commit da493ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jsonld/webPage.tsx
@@ -1,10 +1,10 @@
import React from 'react';
import type { ReviewedBy } from 'src/types';

import { JsonLd } from './jsonld';
import { JsonLd, JsonLdProps } from './jsonld';
import { setReviewedBy } from 'src/utils/schema/setReviewedBy';

export interface WebPageJsonLdProps {
export interface WebPageJsonLdProps extends JsonLdProps {
keyOverride?: string;
id: string;
description?: string;
Expand Down

0 comments on commit da493ea

Please sign in to comment.