diff --git a/new-lamassu-admin/src/components/inputs/cashbox/Cashbox.js b/new-lamassu-admin/src/components/inputs/cashbox/Cashbox.js index 6cc6864e..f41ddf82 100644 --- a/new-lamassu-admin/src/components/inputs/cashbox/Cashbox.js +++ b/new-lamassu-admin/src/components/inputs/cashbox/Cashbox.js @@ -3,11 +3,8 @@ import classnames from 'classnames' import React from 'react' import Chip from 'src/components/Chip' -import { Link } from 'src/components/buttons' import { Info2, Label1, Label2 } from 'src/components/typography' -import TextInputFormik from '../base/TextInput' - import { cashboxStyles, gridStyles } from './Cashbox.styles' const cashboxClasses = makeStyles(cashboxStyles) @@ -72,44 +69,6 @@ const CashIn = ({ currency, notes, total }) => { ) } -const CashInFormik = ({ - capacity = 1000, - onEmpty, - field: { - value: { notes, deviceId } - }, - form: { setFieldValue } -}) => { - const classes = gridClasses() - - return ( - <> -