Update index.js

This commit is contained in:
Nikhil569 2023-10-13 19:05:13 +05:30 committed by GitHub
parent ce59170752
commit 79072785e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,9 +23,7 @@ const RequestMethod = ({ item }) => {
return (
<StyledWrapper>
<div className={getClassname(item.request.method)}>
<span className="uppercase">
{item.request.method}
</span>
<span className="uppercase">{item.request.method}</span>
</div>
</StyledWrapper>
);