mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 19:05:11 +00:00
Remove unused imports and variables
This commit is contained in:
parent
3fa9eb58b8
commit
93aaf8160e
1 changed files with 1 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import type { AgentState } from "@mariozechner/pi-agent-core";
|
||||
import { existsSync, readFileSync, writeFileSync } from "fs";
|
||||
import { basename, join } from "path";
|
||||
import { APP_NAME, getExportTemplateDir, VERSION } from "../../config.js";
|
||||
import { APP_NAME, getExportTemplateDir } from "../../config.js";
|
||||
import { getResolvedThemeColors } from "../../modes/interactive/theme/theme.js";
|
||||
import { SessionManager } from "../session-manager.js";
|
||||
|
||||
|
|
@ -122,8 +122,6 @@ function generateHtml(sessionData: SessionData, themeName?: string): string {
|
|||
const containerBg = exportColors.cardBg;
|
||||
const infoBg = exportColors.infoBg;
|
||||
|
||||
const title = `Session ${sessionData.header?.id ?? "export"} - ${APP_NAME}`;
|
||||
|
||||
// Base64 encode session data to avoid escaping issues
|
||||
const sessionDataBase64 = Buffer.from(JSON.stringify(sessionData)).toString("base64");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue