aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-06-26 15:52:32 -0300
committerSebastian <sebasjm@gmail.com>2022-06-26 15:52:32 -0300
commitccd289904dbfd49014b19ee9b480581cb4391a3e (patch)
treece8e7b6d229c6692d4906b98719cf03e38204d50 /packages/anastasis-webui
parent1b91d87f4fa6c6d68f748360ce63d94911f9bb2c (diff)
downloadwallet-core-ccd289904dbfd49014b19ee9b480581cb4391a3e.tar.xz
- typo fix
Diffstat (limited to 'packages/anastasis-webui')
-rwxr-xr-xpackages/anastasis-webui/clean_and_build.sh2
-rw-r--r--packages/anastasis-webui/src/pages/home/authMethod/AuthMethodTotpSetup.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/anastasis-webui/clean_and_build.sh b/packages/anastasis-webui/clean_and_build.sh
index 5f308e67c..25e7bd998 100755
--- a/packages/anastasis-webui/clean_and_build.sh
+++ b/packages/anastasis-webui/clean_and_build.sh
@@ -52,7 +52,7 @@ bundle ui-dev
if [ "WATCH" == "$1" ]; then
echo watch mode
- echo Writting any file in the src directory will trigger a browser reload.
+ echo Writing any file in the src directory will trigger a browser reload.
echo Be sure that the watcher server is running.
echo ./watch/serve.sh
inotifywait -e close_write -r src -q -m | while read line; do
diff --git a/packages/anastasis-webui/src/pages/home/authMethod/AuthMethodTotpSetup.tsx b/packages/anastasis-webui/src/pages/home/authMethod/AuthMethodTotpSetup.tsx
index 0285c87e1..acdcef3ac 100644
--- a/packages/anastasis-webui/src/pages/home/authMethod/AuthMethodTotpSetup.tsx
+++ b/packages/anastasis-webui/src/pages/home/authMethod/AuthMethodTotpSetup.tsx
@@ -57,7 +57,7 @@ export function AuthMethodTotpSetup({
const errors = !name
? "The TOTP name is missing"
: !testCodeMatches
- ? "The test code doesnt match"
+ ? "The test code doesn't match"
: undefined;
function goNextIfNoErrors(): void {
if (!errors) addTotpAuth();