Skip to content

Commit

Permalink
src: drop HTTP from the gateway list
Browse files Browse the repository at this point in the history
It's still in get_webstat_metrics.py, but upgrading this script is a bit more
complicated, so let's just fix the UI.

Signed-off-by: Roman Khimov <[email protected]>
  • Loading branch information
roman-khimov committed Mar 19, 2024
1 parent 01ea63e commit 0395ef7
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,20 +213,15 @@ const Home = ({
renderAs={Notification}
color="grey"
>
<Heading subtitle weight="semibold">Test gateways</Heading>
<Heading subtitle weight="semibold">Test gateway</Heading>
<div className="info_caption">
<p>These are public gateways that MUST NOT be used for production applications, but they can be used for test purposes.</p>
<p>They're a centralization point and they're not guaranteed to always be available.</p>
<p>This is a public gateway that MUST NOT be used for production applications, but it can be used for test purposes.</p>
<p>It's a centralization point and it's not guaranteed to always be available.</p>
</div>
<Table.Container>
<Table>
<thead>
<tr>
<th>
<abbr>
HTTP
</abbr>
</th>
<th>
<abbr>
REST
Expand All @@ -236,10 +231,7 @@ const Home = ({
</thead>
<tbody>
{data.gateways && data.gateways[activeNet].map((node: string[]) => (
<tr key={node[0]}>
<td>
{node[0]}
</td>
<tr key={node[1]}>
<td>
{node[1]}
</td>
Expand Down

0 comments on commit 0395ef7

Please sign in to comment.