diff --git a/components/layout/search/bottom-content.tsx b/components/layout/search/bottom-content.tsx
index 45cbee47a..9be58a5e3 100644
--- a/components/layout/search/bottom-content.tsx
+++ b/components/layout/search/bottom-content.tsx
@@ -19,10 +19,7 @@ const manufactureVariantMap: Record<
const BottomContent = async ({ collectionHandle }: { collectionHandle: string }) => {
const collection = await getCollection({ handle: collectionHandle });
- if (
- !collection ||
- (!collection.dynamicContent && !collection.transmissionCodeLinks && !collection.engineSizeLinks)
- ) {
+ if (!collection) {
return null;
}
@@ -33,22 +30,24 @@ const BottomContent = async ({ collectionHandle }: { collectionHandle: string })