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
19 lines
423 B
JavaScript
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
|