diff --git a/apps/web/src/app/(home)/new/_components/stack-builder.tsx b/apps/web/src/app/(home)/new/_components/stack-builder.tsx index 5335bbd..dcd01f4 100644 --- a/apps/web/src/app/(home)/new/_components/stack-builder.tsx +++ b/apps/web/src/app/(home)/new/_components/stack-builder.tsx @@ -1339,11 +1339,10 @@ const StackBuilder = () => { duration: 4000, }); } else if (compatibilityAnalysis.changes.length > 1) { - const message = `${ - compatibilityAnalysis.changes.length - } compatibility adjustments made:\n${compatibilityAnalysis.changes - .map((c) => `• ${c.message}`) - .join("\n")}`; + const message = `${compatibilityAnalysis.changes.length + } compatibility adjustments made:\n${compatibilityAnalysis.changes + .map((c) => `• ${c.message}`) + .join("\n")}`; toast.info(message, { duration: 5000, }); @@ -1951,6 +1950,15 @@ const StackBuilder = () => {
+ {lastSavedStack ? (
@@ -2095,10 +2094,10 @@ const StackBuilder = () => { const disabledReason = isDisabled ? getDisabledReason( - stack, - categoryKey as keyof typeof TECH_OPTIONS, - tech.id, - ) + stack, + categoryKey as keyof typeof TECH_OPTIONS, + tech.id, + ) : null; return (