From 46979597a6c985e4128db39348bcfcf3701e2d9c Mon Sep 17 00:00:00 2001 From: Victor Oliva Date: Wed, 1 Jul 2026 12:57:12 +0200 Subject: [PATCH] fix extrinsics jitter, remove beta anotation (#166) --- .../EditCodec/Tree/codec-components.tsx | 2 +- src/pages/AppShell.tsx | 9 +++------ src/pages/Extrinsics/EditMode.tsx | 10 ++++------ src/pages/Network/Network.tsx | 3 ++- 4 files changed, 10 insertions(+), 14 deletions(-) diff --git a/src/codec-components/EditCodec/Tree/codec-components.tsx b/src/codec-components/EditCodec/Tree/codec-components.tsx index 1d16186..c5e7fc6 100644 --- a/src/codec-components/EditCodec/Tree/codec-components.tsx +++ b/src/codec-components/EditCodec/Tree/codec-components.tsx @@ -181,7 +181,7 @@ export const ItemTitle: FC< ref={titleRef} className="flex flex-1 ml-1 flex-wrap leading-none" /> -
+
{onZoom && binaryStatus && ( void }> = ({ src="/papi_logo-light.svg" alt="papi logo" /> -
-
- papi{" "} - console -
-
beta
+
+ papi{" "} + console
{mobile ? ( diff --git a/src/pages/Extrinsics/EditMode.tsx b/src/pages/Extrinsics/EditMode.tsx index 6f45240..d70cbda 100644 --- a/src/pages/Extrinsics/EditMode.tsx +++ b/src/pages/Extrinsics/EditMode.tsx @@ -57,7 +57,7 @@ export const EditMode: React.FC<{
-
-
- - -
+
+ +
diff --git a/src/pages/Network/Network.tsx b/src/pages/Network/Network.tsx index d9f5ee2..619f337 100644 --- a/src/pages/Network/Network.tsx +++ b/src/pages/Network/Network.tsx @@ -524,9 +524,10 @@ const getConnectionLabel = ( selectedChain: SelectedChain, websocketStatus: StatusChange | null, ) => { - const { network, endpoint } = selectedChain + const { network, endpoint, withChopsticks } = selectedChain if (endpoint === LIGHT_CLIENT_ENDPOINT) return "Smoldot" if (endpoint === AUTO_RPC_ENDPOINT) { + if (withChopsticks) return null if (!websocketStatus) return const isReady = "uri" in websocketStatus