run prettier-fix

This commit is contained in:
Shiv Deepak Muddada
2025-04-09 21:09:32 -07:00
parent 638603c0f3
commit f43a9140ef
2 changed files with 11 additions and 4 deletions

View File

@@ -79,9 +79,14 @@ const App = () => {
const [sseUrl, setSseUrl] = useState<string>(() => {
return localStorage.getItem("lastSseUrl") || "http://localhost:3001/sse";
});
const [transportType, setTransportType] = useState<"stdio" | "sse" | "streamable-http">(() => {
const [transportType, setTransportType] = useState<
"stdio" | "sse" | "streamable-http"
>(() => {
return (
(localStorage.getItem("lastTransportType") as "stdio" | "sse" | "streamable-http") || "stdio"
(localStorage.getItem("lastTransportType") as
| "stdio"
| "sse"
| "streamable-http") || "stdio"
);
});
const [logLevel, setLogLevel] = useState<LoggingLevel>("debug");