Merge pull request #2112 from aftermath2/update_token_warning_message

Update token warning message
This commit is contained in:
KoalaSat
2025-07-26 18:33:49 +00:00
committed by GitHub
2 changed files with 2 additions and 4 deletions

View File

@ -14,9 +14,7 @@ docker-compose up
# Check out http://localhost:12596 on your browser
```
You can edit the frontend code in `/frontend/src/` to make the changes you want. Within a few seconds, the `npm-dev` container process will pack the code into the local `main.js`. Visit `http://localhost:12596` and you will see your changes on the frontend.
**You are ready to go!** Edit the frontend code in `/frontend/src/` to make the changes you want. Within a few seconds, the `npm run dev` process will pack the code into the local `main.js`. Visit your selected {robosats-site} and you will see your new awesome frontend! :)
**You are ready to go!** Edit the frontend code in `/frontend/src/` to make the changes you want. Within a few seconds, the `npm run build` container process will pack the code into the local `main.js`. Visit `http://localhost:12596` and you will see your changes on the frontend.
Every time you save changes to files in `/frontend/src` you will be able to see them in your browser after a few seconds using force refresh (Ctrl+Shift+R).

View File

@ -89,7 +89,7 @@ const Onboarding = ({ setView, inputToken, setInputToken }: OnboardingProps): Re
<Alert variant='outlined' severity='info'>
<b>{`${t('Store it somewhere safe!')} `}</b>
{t(
`This token is the one and only key to your robot and trade. You will need it later to recover your order or check its status.`,
`This token is the one and only key to your robot, you will need it later to recover your order. Keep it secret, sharing it could put your funds at risk.`,
)}
</Alert>
</Grid>