This commit is contained in:
Danel Kungla
2025-10-24 09:35:35 +03:00
parent 9a01c15a76
commit 38c487b54f
3 changed files with 3 additions and 14 deletions

View File

@@ -23,6 +23,7 @@ const AIBlocks = async ({
if (!isOpenAiAvailable) {
return <OrderAnalysesPackageCard />;
}
if (analysisResponses?.length === 0) {
return (
<>

View File

@@ -25,8 +25,6 @@ export default async function Recommendations({
}
return (
<>
<OrderAnalysesCards analyses={orderAnalyses} countryCode={countryCode} />
</>
<OrderAnalysesCards analyses={orderAnalyses} countryCode={countryCode} />
);
}