lamassu-server/new-lamassu-admin/src/pages/Notifications/sections/TransactionAlerts.js
Liordino Neto 112544fc75 fix: increased width of inputs so they doesn't cut off text
fix: reenabled the cash-out display component with 500 notes max bot and top

fix: fixed repeated import on new-admin config accounts

feat: reenabled the cash-out display component
2020-09-02 12:29:01 +02:00

19 lines
423 B
JavaScript

import React from 'react'
import SingleFieldEditableNumber from '../components/SingleFieldEditableNumber'
const NAME = 'highValueTransaction'
const TransactionAlerts = ({ section, fieldWidth }) => {
return (
<SingleFieldEditableNumber
section={section}
title="High value transaction"
label="Alert me over"
name={NAME}
width={fieldWidth}
/>
)
}
export default TransactionAlerts