Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
FLiotta committed Nov 21, 2020
1 parent 98e7083 commit 2b6d65e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions client/src/components/CookiesModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ const CookiesModal = ({
hasSeenCookiesModal: {
type: 'boolean',
interactive: false,
description: "This cookie allows us to known if you've been already informed about what cookies we use.",
description: "This cookie allows us to know if you've been already informed about what cookies we use.",
},
token: {
optional: false,
type: 'string',
checked: true,
interactive: true,
description: "It stores your session token, so you don't have to LogIn everytime you visit the webpage.",
description: "It stores your session token, so you don't have to Log in everytime you visit the webpage.",
},
allowAnalytics: {
optional: true,
Expand Down Expand Up @@ -76,7 +76,7 @@ const CookiesModal = ({
<h5 className="cookies-modal__header-title">
{"<sarcasm>"}
<br />
<span style={{ marginLeft: 25 }}>Oh wow, cookies, in 2020, i didn't see that coming.</span>
<span style={{ marginLeft: 25 }}>Oh wow... cookies... in 2020... i didn't see that coming.</span>
<br />
{"</sarcasm>"}
</h5>
Expand Down
4 changes: 2 additions & 2 deletions client/src/pages/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Landing = (): JSX.Element => {
const changeTextInterval = setInterval(() => {
const random: number = Math.floor(Math.random() * options.length);
setTitleLabel(options[random]);
}, 4000);
}, 2000);

trackPageView('Landing');

Expand Down Expand Up @@ -43,7 +43,7 @@ const Landing = (): JSX.Element => {
with tiquet
</h1>
<p className="landing__body-description">
Open source project management tool inspired in the kanban methodology.
Open source project management tool inspired by the kanban methodology.
</p>
<div className="landing__body-btns">
<div>
Expand Down

0 comments on commit 2b6d65e

Please sign in to comment.