Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
[ETCM-386] Feedback & support buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
qwhex committed Nov 20, 2020
1 parent 592c371 commit b444c1d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Expand Up @@ -27,7 +27,7 @@ const AppContent: React.FC = () => {
<WalletState.Provider initialState={{web3, store}}>
<TokensState.Provider initialState={{web3, store}}>
<Sidebar />
{/* FIXME: version={MANTIS_WALLET_VERSION} /> */}
{/* FIXME: ETCM-404 version={MANTIS_WALLET_VERSION} /> */}
<Router />
</TokensState.Provider>
</WalletState.Provider>
Expand Down
3 changes: 1 addition & 2 deletions src/external-link-config.ts
@@ -1,8 +1,7 @@
import {DefinedNetworkName} from './config/type'

export const LINKS = {
support: 'https://ethereumclassic.org/',
feedback: 'https://ethereumclassic.org/',
support: 'https://iohk.zendesk.com/hc/en-us/requests/new',
}

type ExplorerLinks = Record<DefinedNetworkName, (hash: string) => string>
Expand Down
5 changes: 0 additions & 5 deletions src/layout/Sidebar.tsx
Expand Up @@ -7,14 +7,12 @@ import {MENU, MenuId, MenuItem} from '../routes-config'
import {loadMantisWalletStatus, loadConfig} from '../config/renderer'
import {useInterval} from '../common/hook-utils'
import {WalletState, canRemoveWallet, SynchronizationStatus} from '../common/wallet-state'
import {Link} from '../common/Link'
import {SyncStatus} from '../common/SyncStatus'
import {StatusModal} from '../common/StatusModal'
import {SupportModal} from '../common/SupportModal'
import {fillActionHandlers} from '../common/util'
import {BalanceDisplay} from '../wallets/BalanceDisplay'
import {RemoveWalletModal} from '../wallets/modals/RemoveWalletModal'
import {LINKS} from '../external-link-config'
import {BackendState} from '../common/backend-state'
import {TokensState} from '../tokens/tokens-state'
import {Trans} from '../common/Trans'
Expand Down Expand Up @@ -136,9 +134,6 @@ export const Sidebar = (): JSX.Element => {
>
<Trans k={['common', 'link', 'support']} />
</span>
<Link href={LINKS.feedback} popoverPlacement="top" className="footer-link feedback">
<Trans k={['common', 'link', 'feedback']} />
</Link>
<span
className="footer-link status"
{...fillActionHandlers(() => setActiveModal('Status'), 'link')}
Expand Down
1 change: 0 additions & 1 deletion src/translations/en/renderer.json
Expand Up @@ -326,7 +326,6 @@
"no": "No"
},
"link": {
"feedback": "Feedback",
"support": "Support",
"status": "Status",
"showDetails": "Show details",
Expand Down

0 comments on commit b444c1d

Please sign in to comment.