Skip to content

fix: multiple typos of significant importance #580

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

Open
wants to merge 6 commits into
base: main
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
4 changes: 2 additions & 2 deletions apps/indexer-admin/TODO.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Plan to refactor this projet
## Plan to refactor this project

- Part 1 for the whole project

Expand All @@ -15,7 +15,7 @@

- Part 2 for the query and contract

- [ ] Move the relative codes to togather.
- [ ] Move the relative codes to together.
- [ ] Wrap ContractSDK.
...

Expand Down
2 changes: 1 addition & 1 deletion apps/indexer-admin/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const AppContents = () => {

// note this flow, after allow all wallet can be access, the coordinatorIndexer is a async fetch,
// all of other components dependent the result.
// and hasController also be dependent for otehr components.
// and hasController also be dependent for other components.
useMount(async () => {
await load();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ErrorPlaceholder: FC<IProps> = (props) => {
Oops! Can&apos;t connect to coordinator
</Typography>
<Typography type="secondary" style={{ textAlign: 'center' }}>
It looks like the coordinator service is temporarily unavaiable
It looks like the coordinator service is temporarily unavailable
<span>, please</span>
<br />
<span>check your coordinator service or let us know in </span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const IndexingForm: FC<Props> = ({ setVisible, id: propsId, onSuccess })
type: 'default' as NOTIFICATION_TYPE,
title: 'Purge POI',
message:
'Sent request to purge Proof of Index (POI), it will take around 2 minutes dependeing on your indexing progress. Monitor the network tab for progress.',
'Sent request to purge Proof of Index (POI), it will take around 2 minutes depending on your indexing progress. Monitor the network tab for progress.',
});
}

Expand Down
2 changes: 1 addition & 1 deletion apps/indexer-admin/src/pages/controllers/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export type Controller = {
export enum ControllerAction {
configController = 'configController',
removeAccount = 'removeAccount',
withdraw = 'widthdraw',
withdraw = 'withdraw',
}
2 changes: 1 addition & 1 deletion apps/indexer-admin/src/pages/projects/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const createAddProjectSteps = (onAddProject: FormSubmit) => ({
{
index: 0,
title: 'Add new project',
desc: 'Input the deployment id, and add the project into you service. Your can manage the project in the projects page and start indexing the project at any time you want.',
desc: 'Input the deployment id, and add the project into your service. Your can manage the project in the projects page and start indexing the project at any time you want.',
buttonTitle: 'Add project',
form: {
formValues: initialProjectValues,
Expand Down