Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/AISongModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@

{/* Track Statistics */}
{trackStats ? (
<div className="p-4 bg-gray-900/50 rounded-lg">

Check failure on line 1127 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

JSX expressions must have one parent element.
<h3 className="text-sm font-medium text-gray-300 mb-3">{String("Track Statistics")}</h3>
<div className="grid grid-cols-2 gap-3 mb-3">
<div className="text-xs">
Expand Down Expand Up @@ -1154,6 +1154,10 @@
) : null}
</div>
</div>
<div className="space-y-1.5">
{trackStatisticsRows.length > 0 && (trackStatisticsRows as React.ReactNode)}
</div>
</div>

Check failure on line 1160 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

')' expected.
) : null}

{/* Automation Visualization */}
Expand Down Expand Up @@ -1256,7 +1260,7 @@
</div>
)}
</div>
) : (

Check failure on line 1263 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

'}' expected.
/* Empty State */
<div className="flex flex-col items-center justify-center py-12 text-center">
<div className="w-16 h-16 rounded-full bg-gray-800 flex items-center justify-center mb-4">
Expand All @@ -1267,9 +1271,9 @@
Paste or drop valid JSON in the Paste tab to see a preview of your song.
</p>
</div>
)}

Check failure on line 1274 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

Unexpected token. Did you mean `{'}'}` or `&rbrace;`?
</div>
)}

Check failure on line 1276 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

Unexpected token. Did you mean `{'}'}` or `&rbrace;`?
</div>

{/* Progress Bar (shown during import) */}
Expand Down Expand Up @@ -1367,8 +1371,8 @@
</div>
</div>
</div>
</div>

Check failure on line 1374 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

')' expected.
);

Check failure on line 1375 in src/components/AISongModal.tsx

View workflow job for this annotation

GitHub Actions / build-and-diagnose

Expression expected.
}

export default AISongModal;
Loading
Loading