diff --git a/src/ui/RequestList.tsx b/src/ui/RequestList.tsx index 1d27d87..e6665b9 100644 --- a/src/ui/RequestList.tsx +++ b/src/ui/RequestList.tsx @@ -16,7 +16,7 @@ function getColor(method: string) { return "grey"; } method = method.toUpperCase(); - if (method === "GET") return "green"; + if (method === "GET") return "black"; if (method === "POST") return "orange"; if (method === "PUT") return "orange"; if (method === "PATCH") return "orange";