Remove dead code in app and XBRL loader

This commit is contained in:
2026-03-21 13:03:12 -04:00
parent 7d2816e3c4
commit dd289968b8
22 changed files with 22 additions and 796 deletions

View File

@@ -11,7 +11,7 @@ import {
type IssuerOverlayStats,
} from "@/lib/server/db/schema";
export type IssuerOverlayRevisionRecord = {
type IssuerOverlayRevisionRecord = {
id: number;
ticker: string;
revision_number: number;
@@ -22,7 +22,7 @@ export type IssuerOverlayRevisionRecord = {
created_at: string;
};
export type IssuerOverlayRecord = {
type IssuerOverlayRecord = {
ticker: string;
status: "empty" | "active" | "error";
active_revision_id: number | null;