Skip to content

Commit 634c217

Browse files
committed
Fix typescript erros
1 parent c372e55 commit 634c217

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dotcom-rendering/src/layouts/HostedArticleLayout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ export const HostedArticleLayout = (props: WebProps | AppProps) => {
213213
contributionsServiceUrl
214214
}
215215
contentType={frontendData.contentType}
216-
keywordIds={frontendData.config.keywordIds}
217-
idUrl={frontendData.config.idUrl}
216+
idUrl={frontendData.config.idUrl ?? ''}
218217
isSensitive={
219218
frontendData.config.isSensitive
220219
}
221-
isDev={frontendData.config.isDev}
220+
isDev={!!frontendData.config.isDev}
221+
keywordIds={frontendData.config.keywordIds}
222222
abTests={frontendData.config.abTests}
223223
shouldHideAds={frontendData.shouldHideAds}
224224
/>

0 commit comments

Comments
 (0)