Skip to content

Commit

Permalink
Fix typos and improve time formatting (#4829)
Browse files Browse the repository at this point in the history
* fix typo

* fix typo

* fix typos

* fix typo

* improve time formatting
  • Loading branch information
omahs authored Oct 17, 2024
1 parent fd2c916 commit da0bc86
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,6 @@ Start storybook locally:

`npm run storybook`

Build sotrybook dist:
Build storybook dist:

`npm run storybook:build`
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ function getTimeLeftStr() {
const hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60));

return `${days} d ${hours} h ${minutes}m`;
return `${days}d ${hours}h ${minutes}m`;
}
2 changes: 1 addition & 1 deletion apps/scoutgame/components/info/InfoPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function Document() {
</InfoCard>
<InfoCard title='Partner Rewards'>
<Typography>
Scout Game is partnering with Celo, Game7, Moxie and Bountycatser to reward builders for doing what they do
Scout Game is partnering with Celo, Game7, Moxie and Bountycaster to reward builders for doing what they do
best! Find details about each partnership on the following pages:
</Typography>
<List>
Expand Down
2 changes: 1 addition & 1 deletion apps/scoutgame/components/info/terms/TermsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function Document() {
Farcaster account throughout the entire duration of the Service usage period. The User alone is responsible for
keeping the access codes to their crypto wallet and other 3rd party accounts private, and Scout Game declines
all liability if the Service is used by a person other than the User or a person authorized by the latter,
possessing the usernames and passwords to the User's account. User account is non-transferrable.
possessing the usernames and passwords to the User's account. User account is non-transferable.
</Typography>

<Typography variant='h5' color='secondary'>
Expand Down
4 changes: 2 additions & 2 deletions serverless/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Two functions are currently deployed.

One is a SQS worker in charge of executing and handling messages in the SQS queue. This one signs the payload of the webhook and call our user's API with the signature + payload.

The webhook expect a 200 response back. If this isn't successful, the message goes back to the queue and is executed up to 5 times with a delay between each execution.
The webhook expects a 200 response back. If this isn't successful, the message goes back to the queue and is executed up to 5 times with a delay between each execution.

`checker.ts`

This one is a simple HTTP POST endpoint returning a 200 success message and logging the header and payload for debugging and test purpose.
This one is a simple HTTP POST endpoint returning a 200 success message and logging the header and payload for debugging and test purposes.

0 comments on commit da0bc86

Please sign in to comment.