diff options
author | asketonim <anton.dubik33@gmail.com> | 2020-01-28 22:42:47 +0300 |
---|---|---|
committer | asketonim <anton.dubik33@gmail.com> | 2020-01-28 22:42:47 +0300 |
commit | 1ea6ae2f80e5e3f60ad89b4d6d02281c817cee43 (patch) | |
tree | 2ffa01673377d33af49ea8dbc317cde6f2bf0a42 | |
parent | ac791ff6d0c80f90b51866caa3b5195e5f47a045 (diff) | |
download | chrono-cube-ui-1ea6ae2f80e5e3f60ad89b4d6d02281c817cee43.tar.gz |
fix: change message on 'running' mode
-rw-r--r-- | public/favicon.png | bin | 0 -> 375 bytes | |||
-rw-r--r-- | public/index.html | 1 | ||||
-rw-r--r-- | src/pages/Timer/TimerButton/TimerButton.js | 2 |
3 files changed, 2 insertions, 1 deletions
diff --git a/public/favicon.png b/public/favicon.png Binary files differnew file mode 100644 index 0000000..5991e63 --- /dev/null +++ b/public/favicon.png diff --git a/public/index.html b/public/index.html index f14ab80..0ecf8b9 100644 --- a/public/index.html +++ b/public/index.html @@ -1,6 +1,7 @@ <!DOCTYPE html> <html lang="en"> <head> + <link rel="icon" type="image/png" sizes="16x16" href="./favicon.png" /> <title> ChronoCube </title> </head> <body> diff --git a/src/pages/Timer/TimerButton/TimerButton.js b/src/pages/Timer/TimerButton/TimerButton.js index 254f73c..fdb6b7c 100644 --- a/src/pages/Timer/TimerButton/TimerButton.js +++ b/src/pages/Timer/TimerButton/TimerButton.js @@ -74,7 +74,7 @@ const TimerButton = ({ registerResult }) => { const composeHelperText = () => { switch (mode) { - case 'running': return '_'; + case 'running': return 'Go fast!'; case 'countdown': return 'Release SPACE to begin'; case 'over': return 'You are too late!'; default: return 'Hold SPACE to start countdown'; |