Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottyPoi committed Oct 19, 2023
1 parent ce56032 commit 83cbdcd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ The App utilizes **tRpc**, a typescript based RPC library, to communicate with t
- TESTS tab
- not yet implemented

## Console

- See the browser console for additional information while the client is running.

## App Features

### Routing Table
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Components/Start.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Start() {

const startUP = async () => {
const client = await start.mutateAsync()
if (client.startsWith('enr')) {
if (client.startsWith('enr') || client === 'Already started') {
setStarted(true)
setNodeId(client)
dispatch({
Expand Down

0 comments on commit 83cbdcd

Please sign in to comment.