From 684fdd18daa231ce5e5aa140bcb5f182c5a59af1 Mon Sep 17 00:00:00 2001 From: aftermath2 Date: Sat, 1 Apr 2023 12:00:00 +0000 Subject: [PATCH 1/2] Update token warning message --- frontend/src/basic/RobotPage/Onboarding.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/basic/RobotPage/Onboarding.tsx b/frontend/src/basic/RobotPage/Onboarding.tsx index 93105d56..a65f7dc3 100644 --- a/frontend/src/basic/RobotPage/Onboarding.tsx +++ b/frontend/src/basic/RobotPage/Onboarding.tsx @@ -89,7 +89,7 @@ const Onboarding = ({ setView, inputToken, setInputToken }: OnboardingProps): Re {`${t('Store it somewhere safe!')} `} {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.`, )} From 314138f0acd763993d199f816a1c69faaaf6e595 Mon Sep 17 00:00:00 2001 From: aftermath2 Date: Sat, 1 Apr 2023 12:00:00 +0000 Subject: [PATCH 2/2] Remove duplicate paragraph --- development/setup.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/development/setup.md b/development/setup.md index 2c79dec0..63def4ef 100644 --- a/development/setup.md +++ b/development/setup.md @@ -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).