From 7a9c2e22236383605415a408800dc1d567a35447 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 8 Jan 2025 06:21:44 -0800 Subject: [PATCH] Move info tab to last --- src-web/components/RequestPane.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src-web/components/RequestPane.tsx b/src-web/components/RequestPane.tsx index 2b538a34..0dd638eb 100644 --- a/src-web/components/RequestPane.tsx +++ b/src-web/components/RequestPane.tsx @@ -153,10 +153,6 @@ export const RequestPane = memo(function RequestPane({ const tabs = useMemo( () => [ - { - value: TAB_DESCRIPTION, - label: 'Info', - }, { value: TAB_BODY, rightSlot: numParams > 0 ? : null, @@ -264,6 +260,10 @@ export const RequestPane = memo(function RequestPane({ }, }, }, + { + value: TAB_DESCRIPTION, + label: 'Info', + }, ], [ activeRequest.authentication,