From 2e7e9d267520f2a9e3ff3771245795dfd2c1b601 Mon Sep 17 00:00:00 2001 From: elforjani3 Date: Wed, 15 Sep 2021 16:31:19 +0200 Subject: [PATCH] fix: quick new options. --- client/src/common/quickNewOptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/common/quickNewOptions.js b/client/src/common/quickNewOptions.js index 6ebb1ec57..74b9fece8 100644 --- a/client/src/common/quickNewOptions.js +++ b/client/src/common/quickNewOptions.js @@ -2,7 +2,7 @@ import intl from 'react-intl-universal'; export const getQuickNewActions = () => [ { path: 'invoices/new', name: intl.get('sale_invoice') }, - { path: 'bills//new', name: intl.get('purchase_invoice') }, + { path: 'bills/new', name: intl.get('purchase_invoice') }, { path: 'make-journal-entry', name: intl.get('manual_journal') }, { path: 'expenses/new', name: intl.get('expense') }, { path: 'customers/new', name: intl.get('customer') },