diff --git a/new-lamassu-admin/src/pages/OperatorInfo/CoinATMRadar/CoinATMRadar.js b/new-lamassu-admin/src/pages/OperatorInfo/CoinATMRadar/CoinATMRadar.js
index eabdf2d3..437b0f48 100644
--- a/new-lamassu-admin/src/pages/OperatorInfo/CoinATMRadar/CoinATMRadar.js
+++ b/new-lamassu-admin/src/pages/OperatorInfo/CoinATMRadar/CoinATMRadar.js
@@ -4,7 +4,7 @@ import gql from 'graphql-tag'
import * as R from 'ramda'
import React, { useState, memo } from 'react'
-import Popper from 'src/components/Popper'
+import Tooltip from 'src/components/Tooltip'
import { Switch } from 'src/components/inputs'
import { H4, P, Label2 } from 'src/components/typography'
import { ReactComponent as HelpIcon } from 'src/styling/icons/action/help/zodiac.svg'
@@ -51,7 +51,6 @@ const Row = memo(({ title, disabled = false, checked, save, label }) => {
})
const CoinATMRadar = memo(() => {
- const [helpPopperAnchorEl, setHelpPopperAnchorEl] = useState(null)
const [coinAtmRadarConfig, setCoinAtmRadarConfig] = useState(null)
const classes = useStyles()
@@ -82,16 +81,6 @@ const CoinATMRadar = memo(() => {
variables: { config: toNamespace(namespaces.COIN_ATM_RADAR, it) }
})
- const handleOpenHelpPopper = event => {
- setHelpPopperAnchorEl(helpPopperAnchorEl ? null : event.currentTarget)
- }
-
- const handleCloseHelpPopper = () => {
- setHelpPopperAnchorEl(null)
- }
-
- const helpPopperOpen = Boolean(helpPopperAnchorEl)
-
if (!coinAtmRadarConfig) return null
return (
@@ -99,30 +88,19 @@ const CoinATMRadar = memo(() => {
Coin ATM Radar share settings
-
-
-
+
}>
+
+ For details on configuring this panel, please read the relevant
+ knowledgebase article{' '}
+
+ here
+
+ .
+
+
{
Info card
{!editing && (
-
-
-
+
setEditing(true)}>
+
+
+ }>
+ Configure info card settings
+
)}
{
-
+ }>
+ Sharing your information with your customers through your machines
+ allows them to contact you in case there's a problem with a machine in
+ your network or a transaction.
+
Sharing your information with your customers through your machines
allows them to contact you in case there's a problem with a machine in
diff --git a/new-lamassu-admin/src/pages/Services/Services.js b/new-lamassu-admin/src/pages/Services/Services.js
index d2955744..651c14cf 100644
--- a/new-lamassu-admin/src/pages/Services/Services.js
+++ b/new-lamassu-admin/src/pages/Services/Services.js
@@ -63,6 +63,7 @@ const Services = () => {
{R.values(schemas).map(schema => (
setEditingSchema(schema)}
items={getItems(schema.code, schema.elements)}