diff --git a/mobile/src/terminal/document/fit-scale.ts b/mobile/src/terminal/document/fit-scale.ts index 714efbe99d5..563dc418bb0 100644 --- a/mobile/src/terminal/document/fit-scale.ts +++ b/mobile/src/terminal/document/fit-scale.ts @@ -7,10 +7,10 @@ import { updateTransform } from './viewport-transform' import type { TerminalDocumentScope } from './document-scope' +import { scheduleDocumentFrame } from './document-frame-registry' /** The narrowest grid a fit or a text-scale change will fit to. */ export const MIN_FIT_COLS = 20 -import { scheduleDocumentFrame } from './document-frame-registry' export function getCellHeight(scope: TerminalDocumentScope) { if (!scope.term || !scope.term._core) { diff --git a/mobile/src/terminal/document/host-notify.ts b/mobile/src/terminal/document/host-notify.ts index e2fcad15888..43c1042b5a9 100644 --- a/mobile/src/terminal/document/host-notify.ts +++ b/mobile/src/terminal/document/host-notify.ts @@ -1,9 +1,9 @@ import type { TerminalDocumentScope } from './document-scope' +import type { TerminalEngineError } from './document-host-seams' // Declared beside the seam that hands it out, and re-exported here because this is where the -// document's readers have always named it. +// document's readers name it. export type { TerminalEngineError } from './document-host-seams' -import type { TerminalEngineError } from './document-host-seams' /** * The postMessage bridge to the host, and the engine error reporting that rides on it.