Skip to content

Commit

Permalink
remove marketplace link in menu
Browse files Browse the repository at this point in the history
  • Loading branch information
shorn-gnosis committed May 14, 2024
1 parent ada631c commit 4d30ae9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
6 changes: 0 additions & 6 deletions src/components/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import {
ABOUT_URL,
BUG_REPORTING_URL,
FAQ_URL,
MARKETPLACE_URL,
PRIVACY_LEGAL_URL,
} from '~/utils/constants';

Expand Down Expand Up @@ -167,11 +166,6 @@ const NavigationFooter = () => {
{translate('Navigation.linkBugReporting')}
</NavigationExternalLink>
</Grid>
<Grid item xs={6}>
<NavigationExternalLink href={MARKETPLACE_URL}>
{translate('Navigation.linkMarketplace')}
</NavigationExternalLink>
</Grid>
<Grid item xs={6}>
<NavigationExternalLink href={ABOUT_URL}>
{translate('Navigation.linkAbout')}
Expand Down
9 changes: 1 addition & 8 deletions src/components/NavigationFloating.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import ExternalLink from '~/components/ExternalLink';
import translate from '~/services/locale';
import { IconWobblyCircleSecond } from '~/styles/icons';
import { IconClose, IconMore } from '~/styles/icons';
import { BUG_REPORTING_URL, MARKETPLACE_URL } from '~/utils/constants';
import { BUG_REPORTING_URL } from '~/utils/constants';

const useStyles = makeStyles((theme) => {
const backgroundTheme = (props) => {
Expand Down Expand Up @@ -210,13 +210,6 @@ export default function NavigationFloating(props) {
</Button>
</Link>
</MenuItem>
<ExternalLink href={MARKETPLACE_URL}>
<MenuItem onClick={handleClose}>
<Button isOutline>
{translate('NavigationFloating.linkMarketplace')}
</Button>
</MenuItem>
</ExternalLink>
<ExternalLink href={BUG_REPORTING_URL}>
<MenuItem onClick={handleClose}>
<Button isOutline>
Expand Down
1 change: 0 additions & 1 deletion src/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const FAQ_URL_DELETION =
'https://joincircles.net/faq/profile-data-deletion/';
export const FAQ_TRANSITIVE_TRANSFERS_URL =
'https://joincircles.net/faq/who-can-accept-circles-tokens-crc-as-a-payment/';
export const MARKETPLACE_URL = 'http://market.joincircles.net';
export const PRIVACY_LEGAL_URL = 'https://joincircles.net/privacy-policy';
export const TELEGRAM_URL = 'https://t.me/CirclesUBI';
export const TERMS_URL = 'https://joincircles.net/terms';
Expand Down

0 comments on commit 4d30ae9

Please sign in to comment.