Skip to content

Commit ada3acb

Browse files
chore: delete unused networks.ts page (#910)
Signed-off-by: Alex Matson <[email protected]>
1 parent 8705889 commit ada3acb

File tree

3 files changed

+7
-385
lines changed

3 files changed

+7
-385
lines changed

core/wallet-ui-components/src/components/Sessions.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export class WgSessions extends BaseElement {
5454
<tr>
5555
<th>Network ID</th>
5656
<th>Status</th>
57+
<th>Reason</th>
5758
<th>Access Token</th>
5859
</tr>
5960
</thead>
@@ -62,7 +63,12 @@ export class WgSessions extends BaseElement {
6263
(session) => html`
6364
<tr>
6465
<td>${session.network.id}</td>
65-
<td>${session.status}</td>
66+
<td>
67+
${session.status === 'connected'
68+
? '🟢'
69+
: '🔴'}
70+
</td>
71+
<td>${session.reason}</td>
6672
<td>
6773
<button
6874
type="button"

wallet-gateway/remote/src/example-config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ export default {
4141
name: 'Canton Local (Self Signed)',
4242
description:
4343
'A network that connects to a Canton participant using self-signed tokens',
44-
synchronizerId: '<REPLACE_SYNCHRONIZER_ID>',
4544
identityProviderId: 'idp-example-self-signed',
4645
auth: {
4746
method: 'self_signed',
@@ -68,7 +67,6 @@ export default {
6867
name: 'Canton Local (OAuth IDP)',
6968
description:
7069
'A network that connects to a Canton participant using an OAuth IDP',
71-
synchronizerId: '<REPLACE_SYNCHRONIZER_ID>',
7270
identityProviderId: 'idp-example-oauth',
7371
auth: {
7472
method: 'authorization_code',

0 commit comments

Comments
 (0)