From c0228a0ca30f57eb6483189e2bc34e9df29ab827 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Sat, 2 Apr 2022 16:39:16 +0200 Subject: [PATCH] chore: remove unused code --- website/src/components/ApiRequest/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/website/src/components/ApiRequest/index.tsx b/website/src/components/ApiRequest/index.tsx index 6d865657d0..de29343edb 100644 --- a/website/src/components/ApiRequest/index.tsx +++ b/website/src/components/ApiRequest/index.tsx @@ -24,9 +24,6 @@ type Props = { title?: string } -type PropsWithoutPayload = Omit - - const Component: React.FC = ({ verb, payload, url, title }) => { const verbUpper = verb?.toUpperCase() || ''; const prettyPayload = JSON.stringify(payload, null, indentation);