fix: resolve 500 error on partial lyrics regeneration and fix mobile scrolling by removing overflow: hidden

This commit is contained in:
2026-06-04 10:51:48 +02:00
parent 0353a5a9af
commit 9dddaffdd4
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -466,6 +466,10 @@ async function handleGenerate(req, res) {
signal,
);
if (body.section === 'lyrics_partial') {
return json(res, { lyrics: content });
}
const parsed = extractJson(content);
if (body.section === 'all') {
+1 -1
View File
@@ -35,7 +35,6 @@
html, body, #root {
height: 100%;
overflow: hidden;
font-family: 'Inter', system-ui, sans-serif;
cursor: url('/cursor-default.svg') 4 2, auto;
}
@@ -51,6 +50,7 @@
body {
@apply bg-bg text-fg antialiased transition-colors duration-300;
margin: 0;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}