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

Fix typos #1638

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ yarn start:ipfs

The main difference of the ipfs-build is that it uses HashRouter instead of BrowserRouter and makes sure all links are relative.

The ENS app can be used with the Gnosis Safe web interface. The required steps are outline [here](./docs/gnosis_safe_app_support.md).
The ENS app can be used with the Gnosis Safe web interface. The required steps are outlined [here](./docs/gnosis_safe_app_support.md).

## Unit Testing

Expand Down Expand Up @@ -95,7 +95,7 @@ export

### React Style

We use a functional components, using hooks instead of class based components. For basic state we use `useState` and for more complicated state `useReducer`. If they reusable, then you can abstract them to the `hooks` file, which can additionally by split up into a folder once we have enough hooks.
We use a functional components, using hooks instead of class based components. For basic state we use `useState` and for more complicated state `useReducer`. If they are reusable, then you can abstract them to the `hooks` file, which can additionally be split up into a folder once we have enough hooks.

```js
import React, { useState } from 'react'
Expand Down Expand Up @@ -352,7 +352,7 @@ steps to mitigate this:
- Dynamic imports: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import

- Importing only what you need: If you can only import the exact files you need from a module, you
can avoid bundling the whole modlue which can be quite large. Typically you can do this by going into
can avoid bundling the whole module which can be quite large. Typically you can do this by going into
the library in your `node_modules` folder and finding the file exact file you need. For example
if you find the file you need is at `node_modules/@module/src/helpers/index.js` you can do
if you find the file you need is at `node_modules/@module/src/helpers/index.js` you can
`import helper from '@module/src/helpers/index'`.
6 changes: 3 additions & 3 deletions src/components/IPFS/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const TEMPORAL = {
name: 'Temporal', // Name of the IPFS service
logo: temporallogo, // Logo used for the login/sign up header
link: 'https://play2.temporal.cloud', // The link when people click on the logo or manage domains notice
host: 'api.ipfs.temporal.cloud', // the IPFS api endpoint used when the etherium profile is set to mainnet
host: 'api.ipfs.temporal.cloud', // the IPFS api endpoint used when the ethereum profile is set to mainnet
dev: 'api.ipfs.temporal.cloud', // the IPFS api endpoint used when not on mainnet
port: '443', // the port the endpoint is served from
apiPath: '/api/v0/', // Api path extension if necessary
protocol: 'https', // the protocol used to comunicate with the endpoint
auth: true, // If the api requires authention headers
protocol: 'https', // the protocol used to communicate with the endpoint
auth: true, // If the api requires authentication headers
login: 'https://api.temporal.cloud/v2/auth/login', // the Authentication endpoint to verify users information. Currently supports JWT
loginDev: 'https://dev.api.temporal.cloud/v2/auth/login', // same as login but used if user is not on mainnet
signup: 'https://api.temporal.cloud/v2/auth/register',
Expand Down