From 0ca557d31c74d16c740eadd2456bb9dc3db0383b Mon Sep 17 00:00:00 2001 From: Rohit Date: Sat, 15 Mar 2025 04:01:03 +0530 Subject: [PATCH] feat: match output preview width --- server/src/pgboss-worker.ts | 2 +- src/components/run/InterpretationLog.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/pgboss-worker.ts b/server/src/pgboss-worker.ts index 3566b4f8..025daaaf 100644 --- a/server/src/pgboss-worker.ts +++ b/server/src/pgboss-worker.ts @@ -47,7 +47,7 @@ interface ExecuteRunData { browserId: string; } -const pgBoss = new PgBoss({connectionString: pgBossConnectionString, schema: 'public'}); +const pgBoss = new PgBoss({connectionString: pgBossConnectionString }); /** * Extract data safely from a job (single job or job array) diff --git a/src/components/run/InterpretationLog.tsx b/src/components/run/InterpretationLog.tsx index e42ef1e3..05e8a3ec 100644 --- a/src/components/run/InterpretationLog.tsx +++ b/src/components/run/InterpretationLog.tsx @@ -165,7 +165,7 @@ export const InterpretationLog: React.FC = ({ isOpen, se color: `${darkMode ? 'white' : 'black'}`, padding: '10px', height: window.innerHeight * 0.7, - width: window.innerWidth * 0.7, + width: window.innerWidth * 0.716, display: 'flex', borderRadius: '10px 10px 0 0', },