MCPcopy Index your code
hub / github.com/Opencode-DCP/opencode-dynamic-context-pruning / showStatusDialog

Function showStatusDialog

lib/tui/modals.tsx:15–19  ·  view source on GitHub ↗
(api: TuiApi, title: string, eyebrow: string, message: string)

Source from the content-addressed store, hash-verified

13}
14
15export function showStatusDialog(api: TuiApi, title: string, eyebrow: string, message: string) {
16 showDialog(api, () => (
17 <StatusDialog api={api} title={title} eyebrow={eyebrow} message={message} />
18 ))
19}
20
21export function showError(api: TuiApi, title: string, error: unknown) {
22 const message = error instanceof Error ? error.message : String(error)

Callers 5

showErrorFunction · 0.85
openContextModalFunction · 0.85
openStatsModalFunction · 0.85
openPanelModalFunction · 0.85
runModalFunction · 0.85

Calls 1

showDialogFunction · 0.85

Tested by

no test coverage detected