()
| 75 | }; |
| 76 | |
| 77 | export const getInitialSseUrl = (): string => { |
| 78 | const param = getSearchParam("serverUrl"); |
| 79 | if (param) return param; |
| 80 | return localStorage.getItem("lastSseUrl") || "http://localhost:3001/sse"; |
| 81 | }; |
| 82 | |
| 83 | export const getInitialCommand = (): string => { |
| 84 | const param = getSearchParam("serverCommand"); |
nothing calls this directly
no test coverage detected