fix: spelling mistake

This commit is contained in:
bartosz-lipinski 2021-04-21 21:54:10 -05:00
parent e316021029
commit a58a3baf39
2 changed files with 9 additions and 9 deletions

View File

@ -14,6 +14,13 @@ import { useLocation } from "react-router";
const ASSETS_URL = 'https://raw.githubusercontent.com/solana-labs/oyster/main/assets/wallets/';
export const WALLET_PROVIDERS = [
LedgerProvider,
{
name: "Phantom",
url: "https://www.phantom.app",
icon: `https://www.phantom.app/img/logo.png`,
adapter: PhantomWalletAdapter,
},
{
name: "Sollet",
url: "https://www.sollet.io",
@ -32,13 +39,6 @@ export const WALLET_PROVIDERS = [
url: "https://mathwallet.org",
icon: `${ASSETS_URL}mathwallet.svg`,
},
LedgerProvider,
{
name: "Phantom",
url: "https://www.phantom.app",
icon: `https://www.phantom.app/img/logo.png`,
adapter: PhantomWalletAdapter,
},
{
name: 'Torus',
url: 'https://tor.us',

View File

@ -578,9 +578,9 @@ const EndingPhaseStep = (props: {
<Row className="content-action">
<Col className="section" xl={24}>
<label className="action-field">
<span className="field-title">When do you want the sale to begin?</span>
<span className="field-title">When do you want the sale to end?</span>
<Radio.Group defaultValue="now" onChange={info => setUntilSold(info.target.value === "now")}>
<Radio className="radio-field" value="now">Until sols</Radio>
<Radio className="radio-field" value="now">Until sold</Radio>
<div className="radio-subtitle">The sale will end once the supply goes to zero.</div>
<Radio className="radio-field" value="later">At a specified date</Radio>
<div className="radio-subtitle">The sale will end at this date, regardless if there is remaining supply.</div>