chore(trading): remove red background from trades table (#3214)

This commit is contained in:
Bartłomiej Głownia 2023-03-17 10:52:40 +01:00 committed by GitHub
parent 84795b2d6a
commit 7ef1d75529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ interface Props extends AgGridReactProps {
export const TradesTable = forwardRef<AgGridReact, Props>((props, ref) => {
return (
<AgGrid
style={{ width: '100%', height: '100%', background: 'red' }}
style={{ width: '100%', height: '100%' }}
overlayNoRowsTemplate={t('No trades')}
getRowId={({ data }) => data.id}
ref={ref}