fix: remove blank files

This commit is contained in:
Ahmed Bouhuolia
2024-01-10 17:43:26 +02:00
parent 5ef99f2cb3
commit 8db6e9f049
6 changed files with 3 additions and 3 deletions

View File

@@ -545,7 +545,6 @@ export default class PaymentReceivesController extends BaseController {
includeOptionals: false,
}
);
console.log(req.params);
try {
await this.paymentReceiveApplication.notifyPaymentByMail(

View File

@@ -18,6 +18,7 @@ export interface IJournalReportQuery {
export interface IJournalReportEntriesGroup {
id: string;
date: Date;
dateFormatted: string;
entries: IJournalEntry[];
currencyCode: string;

View File

@@ -141,11 +141,11 @@ export const GeneralLedgerSheetExportMenu = () => {
);
// Handle csv export button click.
const handleCsvExportBtnClick = () => {
csvExport().then(() => {});
csvExport();
};
// Handle xlsx export button click.
const handleXlsxExportBtnClick = () => {
xlsxExport().then(() => {});
xlsxExport();
};
return (