Skip to content
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

DApp-1784 fixed the prod dapp option visibility in header #1789

Merged
Merged
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
22 changes: 13 additions & 9 deletions src/primaries/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import styled, { useTheme } from 'styled-components';
// Internal Compoonents
import ProfileModal from 'components/ProfileModal';
import LoaderSpinner, { LOADER_TYPE } from 'components/reusables/loaders/LoaderSpinner';
import { envUtil, shortenText } from 'helpers/UtilityHelper';
import { EnvHelper, envUtil, shortenText } from 'helpers/UtilityHelper';
import { useAccount } from 'hooks';
import { useClickAway } from 'hooks/useClickAway';
import { useResolveWeb3Name } from 'hooks/useResolveWeb3Name';
Expand Down Expand Up @@ -63,14 +63,18 @@ const Profile = ({ isDarkMode }: { isDarkMode: boolean }) => {
to: APP_PATHS.UserSettings,
invertedIcon: getPublicAssetPath('svg/setting.svg'),
},
{
id: 'prodDapp',
value: '',
function: () => {},
link: `https://${envUtil.prod}`,
title: 'Production dapp',
invertedIcon: getPublicAssetPath('prod.svg'),
},
...(EnvHelper.isProd
? []
: [
{
id: 'prodDapp',
value: '',
function: () => {},
link: `https://${envUtil.prod}`,
title: 'Production dapp',
invertedIcon: getPublicAssetPath('prod.svg'),
},
]),
{
id: 'disconnect',
value: '',
Expand Down
Loading