()
| 111 | const THEME_REFRESH_DELAYS = [1000, 1000] as const |
| 112 | |
| 113 | function createEmptySubagentState(): FooterSubagentState { |
| 114 | return { |
| 115 | tabs: [], |
| 116 | details: {}, |
| 117 | permissions: [], |
| 118 | questions: [], |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | function eventPatch(next: FooterEvent): FooterPatch | undefined { |
| 123 | if (next.type === "queue") { |