Skip to content

Commit

Permalink
style: left apostrophe all the things! (e've u've)
Browse files Browse the repository at this point in the history
  • Loading branch information
evvvritt committed Sep 6, 2023
1 parent 2aa3e1d commit 7aec9b5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ There are a few environment variables required for the app to function. You can

To run the app, you'll need to configure the `PUBLIC_NETWORK` environment variable. This should be the chainId of the chain you want to run the app for, and can currently be either 1, 5 or 11155111. The app will only allow connecting wallets that are set to this network, and all server-side requests will be made for this network's subgraph.

For your convenience, we've deployed production mirrors of the app set to allow testnet connections:
For your convenience, weʼve deployed production mirrors of the app set to allow testnet connections:

```sh
https://goerli.drips.network/ # PUBLIC_NETWORK set to 5
Expand Down
2 changes: 1 addition & 1 deletion src/lib/flows/top-up-flow/top-up-flow-steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function getSuccessMessage(state: TopUpFlowState) {
);

return `
You've successfully topped up ${formattedAmount} ${tokenInfo.info.name}.
Youʼve successfully topped up ${formattedAmount} ${tokenInfo.info.name}.
It may take some time for your balance to update on your dashboard.
`;
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/flows/withdraw-flow/withdraw-flow-steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function getWithdrawSteps(tokenAddress: string) {
props: {
safeAppMode: Boolean(get(walletStore).safe),
message:
"You've successfully withdrawn, and your funds are back in your wallet. It may take some time for your dashboard to update.",
'Youʼve successfully withdrawn, and your funds are back in your wallet. It may take some time for your dashboard to update.',
},
}),
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

<TokenStat
title="Incoming"
tooltip="Your incoming balance is a real-time estimate of what you've earned up until this moment, minus any prior withdrawals."
tooltip="Your incoming balance is a real-time estimate of what youʼve earned up until this moment, minus any prior withdrawals."
>
<svelte:fragment slot="detail">
{#if incomingTotals && incomingTotals.amountPerSecond !== 0n}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/app/(app)/streams/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
props: {
id: 'collect-earnings',
title: 'Collect earnings',
description: "Learn how to collect funds you've earned from incoming streams or splits.",
description: 'Learn how to collect funds youʼve earned from incoming streams or splits.',
illustration: NoWrappedTokens,
actions: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
size: (100 / 24) * 5,
meta: {
tooltipMessage:
"Your incoming balance is a real-time estimate of what you've earned up until this moment, minus any prior withdrawals.",
'Your incoming balance is a real-time estimate of what youʼve earned up until this moment, minus any prior withdrawals.',
},
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</a>
{:else}
<h4>Congratulations!</h4>
<p>You've successfully claimed your project.</p>
<p>Youʼve successfully claimed your project.</p>
<Button variant="primary" icon={ArrowBoxUpRight} on:click={viewProject}
>View project profile</Button
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</a>
{:else}
<h4>Congratulations!</h4>
<p>You've successfully created your Drip List.</p>
<p>Youʼve successfully created your Drip List.</p>
<Button variant="primary" icon={ArrowBoxUpRight} on:click={viewDripList}
>View your Drip List</Button
>
Expand Down

0 comments on commit 7aec9b5

Please sign in to comment.