Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/src/components/wall/IframePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ export function IframePanel({ id, title, params }: PaneProps) {
// Ask the host to front the target with its transparent proxy. The returned
// URL is a loopback origin that serves the page's bytes (instrumented for
// loopback) so Dormouse — now the server — gets a keyboard side-channel, an
// accurate focus model, and real error pages. Reachability/frame-refusal are
// diagnosed by the proxy and shown as a served page inside the frame.
// accurate focus model, and real error pages. Reachability is diagnosed by
// the proxy and shown as a served page inside the frame.
const [resolution, setResolution] = useState<Resolution>(() => (sourceUrl ? { kind: 'resolving' } : { kind: 'empty' }));
useEffect(() => {
if (!sourceUrl) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/components/wall/use-dor-control.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function dorCommandString(args: string[] | undefined): string | undefined {
/**
* The `dor` control plane: the webview handler for `dormouse:control-request`
* events (the `surface.*` methods that back the `dor` CLI) plus its private
* surface-resolution/query helpers. This is CLI policy — surface targeting,
* surface-resolution/query helpers. This is CLI policy — surface targeting,
* param coercion, command quoting, restart/integration timing — not wall layout;
* the layout primitives it drives (`createSplitSurface`, `createContentSurface`,
* `killPaneImmediately`, `buildDorSurfaces`, `surfaceRefForId`) are owned by the
Expand Down
2 changes: 1 addition & 1 deletion lib/src/host/iframe-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ let lastSweep = 0;
* Stand up a loopback proxy in front of `targetUrl` and return the URL the
* panel should frame, or a structured reason it could not. The actual upstream
* fetch happens lazily when the iframe loads the returned URL, so reachability
* and frame-refusal surface as served error pages rather than here.
* surfaces as a served error page rather than here.
*/
export async function createIframeProxyUrl(
targetUrl: string,
Expand Down
Loading