From d7a700933b2987cb2d08eeaec308df9c54222697 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 05:06:06 +0000 Subject: [PATCH] feat: Updated src/ui/RequestList.tsx --- src/ui/RequestList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";