We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4639514 commit 38a57f5Copy full SHA for 38a57f5
src/components/Header.tsx
@@ -293,7 +293,7 @@ function RpcUrl() {
293
borderRadius="round"
294
style={{ minWidth: 8, minHeight: 8 }}
295
/>
296
- <Text size="12px" wrap={false} width="full">
+ <Text size="12px" wrap={false} width="full" style={{overflow: "hidden", textOverflow: "ellipsis"}}>
297
{network.rpcUrl.replace(/https?:\/\//, '')}
298
</Text>
299
</Inline>
src/screens/networks.tsx
@@ -166,6 +166,7 @@ function NetworkRow({
166
color={data ? 'text' : 'text/tertiary'}
167
size="12px"
168
wrap={false}
169
+ style={{overflow: "hidden", textOverflow: "ellipsis"}}
170
>
171
172
0 commit comments