Skip to content

Commit

Permalink
fix: remove padding
Browse files Browse the repository at this point in the history
  • Loading branch information
hdz-666 committed Oct 8, 2024
1 parent 8cb3c38 commit 5b4d57b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,9 @@ const DebugInfo = ({ details }) => {
</Accordion.Header>
<Accordion.Content>
<Flex css={{ flexWrap: 'wrap', mt: '$10', gap: '$10' }}>
<StatsRow css={{ w: 'calc(100% - $6)' }} label="Websocket URL" value={details?.websocketURL} />
<StatsRow css={{ w: 'calc(100% - $6)' }} label="Init Endpoint" value={details?.initEndpoint} />
<StatsRow css={{ w: 'calc(100% - $6)' }} label="Enabled flags" value={details?.enabledFlags?.join(', ')} />
<StatsRow css={{ w: 'calc(100%)' }} label="Websocket URL" value={details?.websocketURL} />
<StatsRow css={{ w: 'calc(100%)' }} label="Init Endpoint" value={details?.initEndpoint} />
<StatsRow css={{ w: 'calc(100%)' }} label="Enabled flags" value={details?.enabledFlags?.join(', ')} />
</Flex>
</Accordion.Content>
</Accordion.Item>
Expand Down

0 comments on commit 5b4d57b

Please sign in to comment.