Skip to content

Commit

Permalink
fix: remove blank files
Browse files Browse the repository at this point in the history
  • Loading branch information
abouolia committed Jan 10, 2024
1 parent 5ef99f2 commit 8db6e9f
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,6 @@ export default class PaymentReceivesController extends BaseController {
includeOptionals: false,
}
);
console.log(req.params);

try {
await this.paymentReceiveApplication.notifyPaymentByMail(
Expand Down
1 change: 1 addition & 0 deletions packages/server/src/interfaces/JournalReport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export interface IJournalReportQuery {

export interface IJournalReportEntriesGroup {
id: string;
date: Date;
dateFormatted: string;
entries: IJournalEntry[];
currencyCode: string;
Expand Down
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 8db6e9f

Please sign in to comment.