# MD for: https://www.mercadopago.com.br/developers/pt/docs/checkout-bricks/status-screen-brick/additional-customization/hide-transaction-date.md \> CLIENT\_SIDE > > h1 > > Hide transaction date By default, the Brick displays the data of the transaction for the user, therefore, if desired, it is possible to hide this data 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: { hideTransactionDate: true } } }; ``` Copiar ``` const customization = { visual: { hideTransactionDate: true } }; ``` Copiar