Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pick copy updates #666

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions projects/ui/src/components/Farmer/Unripe/PickDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,17 +297,17 @@ const PickBeansDialog: FC<
const tab0 = (
<>
<StyledDialogTitle sx={{ pb: 1 }} onClose={handleDialogClose}>
Pick non-Deposited Unripe Beans and Unripe BEAN:3CRV LP
Pick non-Deposited Unripe Beans and Unripe BEAN:ETH LP
</StyledDialogTitle>
<Row gap={1} pb={2} pl={1} pr={3}>
<img src={pickImage} alt="pick" css={{ height: 120 }} />
<Typography sx={{ fontSize: '15px' }} color="text.secondary">
To claim non-Deposited Unripe Beans and Unripe BEAN:3CRV LP, they must
be Picked. After Replant, you can Pick assets to your wallet, or Pick
To claim non-Deposited Unripe Beans and Unripe BEAN:ETH LP, they must
be Picked. You can Pick assets to your wallet, or Pick
and Deposit them directly in the Silo.
<br />
<br />
Unripe Deposited assets <b>do not need to be Picked</b> and will be
Unripe Deposited assets <b>do not need to be Picked</b> and were be
automatically Deposited at Replant.
<br />
<br />
Expand Down Expand Up @@ -353,7 +353,7 @@ const PickBeansDialog: FC<
* Section 3b: Total Unripe Beans
*/}
<Row justifyContent="space-between" pl={1}>
<Typography>Unripe Beans available to Pick at Replant</Typography>
<Typography>Unripe Beans available to Pick</Typography>
<Row gap={0.3}>
<img src={unripeBeanIcon} alt="Circulating Beans" width={13} />
<Typography variant="h4">
Expand Down Expand Up @@ -417,7 +417,7 @@ const PickBeansDialog: FC<
*/}
<Row justifyContent="space-between" pl={1}>
<Typography>
Unripe BEAN:3CRV LP available to Pick at Replant
Unripe BEAN:ETH LP available to Pick
</Typography>
<Row gap={0.3}>
<img src={brownLPIcon} alt="Circulating Beans" width={13} />
Expand Down
30 changes: 23 additions & 7 deletions projects/ui/src/graph/graphql.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -157028,7 +157028,9 @@
"name": "derivedFrom",
"description": "creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API.",
"isRepeatable": false,
"locations": ["FIELD_DEFINITION"],
"locations": [
"FIELD_DEFINITION"
],
"args": [
{
"name": "field",
Expand All @@ -157052,14 +157054,20 @@
"name": "entity",
"description": "Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive.",
"isRepeatable": false,
"locations": ["OBJECT"],
"locations": [
"OBJECT"
],
"args": []
},
{
"name": "include",
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
"isRepeatable": false,
"locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
"locations": [
"FIELD",
"FRAGMENT_SPREAD",
"INLINE_FRAGMENT"
],
"args": [
{
"name": "if",
Expand All @@ -157083,7 +157091,11 @@
"name": "skip",
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
"isRepeatable": false,
"locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
"locations": [
"FIELD",
"FRAGMENT_SPREAD",
"INLINE_FRAGMENT"
],
"args": [
{
"name": "if",
Expand All @@ -157107,7 +157119,9 @@
"name": "specifiedBy",
"description": "Exposes a URL that specifies the behavior of this scalar.",
"isRepeatable": false,
"locations": ["SCALAR"],
"locations": [
"SCALAR"
],
"args": [
{
"name": "url",
Expand All @@ -157131,7 +157145,9 @@
"name": "subgraphId",
"description": "Defined a Subgraph ID for an object type",
"isRepeatable": false,
"locations": ["OBJECT"],
"locations": [
"OBJECT"
],
"args": [
{
"name": "id",
Expand All @@ -157153,4 +157169,4 @@
}
]
}
}
}