Skip to content

Commit

Permalink
Merge pull request #175 from neelvirdy/nvirdy/upload-pinning-status
Browse files Browse the repository at this point in the history
Fix typo in pinning status detail
  • Loading branch information
neelvirdy committed Jan 31, 2023
2 parents 12f1e18 + a918e06 commit 094adca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/UploadItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ export class PinStatusElement extends React.Component<any> {
if (this.state.status == 'pinning') {
return (
<ActionRow style={{ background: `#000`, color: `#fff` }}>
This CID is now being pinned to IPFS in the background, it make take a few minutes. <LoaderSpinner style={{ marginLeft: 8, height: 10, width: 10 }} />
This CID is now being pinned to IPFS in the background, it may take a few minutes. <LoaderSpinner style={{ marginLeft: 8, height: 10, width: 10 }} />
</ActionRow>
);
}

if (this.state.status == 'queued') {
return (
<ActionRow style={{ background: `#000`, color: `#fff` }}>
This CID is waiting in queue to be pinned to IPFS, it make take a few minutes. <LoaderSpinner style={{ marginLeft: 8, height: 10, width: 10 }} />
This CID is waiting in queue to be pinned to IPFS, it may take a few minutes. <LoaderSpinner style={{ marginLeft: 8, height: 10, width: 10 }} />
</ActionRow>
);
}
Expand Down

0 comments on commit 094adca

Please sign in to comment.