UI: ensure dark text on job detail and job history cards (avoid white-on-light backgrounds)\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -77,8 +77,8 @@ export async function action({ request }: { request: Request }) {
|
||||
if (body.background) {
|
||||
// Enqueue background analyze job and return 202 immediately
|
||||
try {
|
||||
const { enqueueAnalyze } = await import("../../lib/jobQueue");
|
||||
const jobId = enqueueAnalyze(ticker, input);
|
||||
const { enqueueAnalyze } = await import("../../lib/queue");
|
||||
const jobId = await enqueueAnalyze(ticker, input);
|
||||
return Response.json({ status: "queued", jobId }, { status: 202 });
|
||||
} catch (enqueueErr) {
|
||||
console.error("[analyze] enqueue error:", enqueueErr);
|
||||
|
||||
Reference in New Issue
Block a user