diff --git a/packages/marko-web-theme-monorail/components/blocks/most-popular.marko b/packages/marko-web-theme-monorail/components/blocks/most-popular.marko index 3a5e41237..6123c405e 100644 --- a/packages/marko-web-theme-monorail/components/blocks/most-popular.marko +++ b/packages/marko-web-theme-monorail/components/blocks/most-popular.marko @@ -51,7 +51,7 @@ $ const buildContentQuery = () => { }; - $ const excludeContentIds = getAsArray(input, 'input.excludeContentIds'); + $ const excludeContentIds = getAsArray(input, 'excludeContentIds'); $ const ids = excludeContentIds.length ? resolved.reduce( (arr, { id }) => (!excludeContentIds.includes(id) ? [...arr, id] : arr), [] ) : resolved.map(({ id }) => id);