Skip to content

Commit b7f3b67

Browse files
committed
chore: resolve suggestions
1 parent ef1f1a9 commit b7f3b67

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<h3 align="center">Verto</h3>
77

88
<p align="center">
9-
A decentralized PST exchange for Arweave
9+
A decentralized token exchange protocol on Arweave
1010
</p>
1111

1212
<!--<p align="center">
@@ -24,7 +24,7 @@
2424

2525
## Building the UI
2626

27-
The UI is written in React/Next.js. Before building it, you will need to install [Node](https://nodejs.org/), then [Yarn](https://yarnpkg.com/). After that you can install the dependencies:
27+
The UI is written in React/Next.js. Before building it, you will need to install [Node](https://nodejs.org/), then [Yarn](https://yarnpkg.com/). After that you can install the dependencies from the repository root:
2828

2929
```sh
3030
yarn install

src/components/CollectionModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ const CollectionModal = (props: Props) => {
273273
await uploader.uploadChunk();
274274
}
275275

276-
// listing the collection via it's contract ID
276+
// listing the collection via its contract ID
277277
try {
278278
await interactWrite(client, "use_wallet", COMMUNITY_CONTRACT, {
279279
function: "list",

src/components/MintCollectible.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const MintCollectible = (props) => {
125125
if (Object.keys(balances).length < 1) {
126126
setAdvancedView(true);
127127
setToast({
128-
description: "Please add at least on holder to the balances object",
128+
description: "Please add at least on holder to the balances",
129129
type: "error",
130130
duration: 3450,
131131
});
@@ -162,7 +162,7 @@ const MintCollectible = (props) => {
162162
data = (await loadFile(file)).target.result as ArrayBuffer;
163163
} catch {
164164
setToast({
165-
description: "Could load file",
165+
description: "Could not load file",
166166
type: "error",
167167
duration: 3000,
168168
});

src/components/space/Collection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ const Collection = ({
154154
addItemInput.setStatus(undefined);
155155
}, [addItemModal.state]);
156156

157-
// add item by it's ID to the collection
157+
// add item by its ID to the collection
158158
function addItem() {
159159
if (
160160
addItemInput.state === "" ||

0 commit comments

Comments
 (0)