# MD for: https://www.mercadopago.com.pe/developers/en/docs/checkout-bricks/status-screen-brick/additional-customization/hide-processing-details.md \> CLIENT\_SIDE > > h1 > > Hide processing details By default, when relevant, Brick will display details of payment processing, for example, reporting data that was entered incorrectly from a card or other \[collection creation results\](https://www.mercadopago.com.pe/developers/en/docs/checkout-api-payments/response-handling/collection-results). If you wish, you can hide these details through the configuration below. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { initialization: { paymentId: 100, // payment id generated by Mercado Pago }, callbacks: { onReady: () => { // callback called when Brick is ready }, onError: (error) => { // callback called for all Brick error cases }, }, customization: { visual: { hideStatusDetails: true } } }; ``` Copiar ``` const customization = { visual: { hideStatusDetails: true } }; ``` Copiar !\[status-screen-brick-hide-processing-details\](https://www.mercadopago.com.pe/checkout-bricks/status-screen-brick-hide-processing-details-mpe-en.jpg)