add additional helper to bid help text
This commit is contained in:
parent
87da2dda85
commit
d7e4ca6e10
2 changed files with 4 additions and 2 deletions
|
@ -20,7 +20,9 @@ class BidHelpText extends React.PureComponent<Props> {
|
||||||
} else {
|
} else {
|
||||||
bidHelpText = `${__('If you bid more than')} ${amountNeededForTakeover} LBC, ${__(
|
bidHelpText = `${__('If you bid more than')} ${amountNeededForTakeover} LBC, ${__(
|
||||||
'when someone navigates to'
|
'when someone navigates to'
|
||||||
)} ${uri} ${__('it will load your published content')}.`;
|
)} ${uri} ${__('it will load your published content')}. ${__(
|
||||||
|
'However, you can get a longer version of this URL for any bid'
|
||||||
|
)}.`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ import * as ACTIONS from 'constants/action_types';
|
||||||
const getCurrentPath = () => {
|
const getCurrentPath = () => {
|
||||||
const { hash } = document.location;
|
const { hash } = document.location;
|
||||||
if (hash !== '') return hash.replace(/^#/, '');
|
if (hash !== '') return hash.replace(/^#/, '');
|
||||||
return '/publish';
|
return '/discover';
|
||||||
};
|
};
|
||||||
|
|
||||||
const reducers = {};
|
const reducers = {};
|
||||||
|
|
Loading…
Reference in a new issue