KeyError: 'e-Invoice Summary'

After installing erpnext14 with India Compliance after login page it’s show these error

Traceback (most recent call last):
  File "apps/frappe/frappe/www/app.py", line 28, in get_context
    boot = frappe.sessions.get()
  File "apps/frappe/frappe/sessions.py", line 166, in get
    bootinfo = get_bootinfo()
  File "apps/frappe/frappe/boot.py", line 38, in get_bootinfo
    get_user(bootinfo)
  File "apps/frappe/frappe/boot.py", line 279, in get_user
    bootinfo.user = frappe.get_user().load_user()
  File "apps/frappe/frappe/utils/user.py", line 257, in load_user
    d.all_reports = self.get_all_reports()
  File "apps/frappe/frappe/utils/user.py", line 261, in get_all_reports
    return get_allowed_reports()
  File "apps/frappe/frappe/boot.py", line 144, in get_allowed_reports
    return get_user_pages_or_reports("Report", cache=cache)
  File "apps/frappe/frappe/boot.py", line 250, in get_user_pages_or_reports
    has_role[report.name]["report_type"] = report.report_type
KeyError: 'e-Invoice Summary'

please help

In erp 13 , Change the Report table column field name it hold a value e-invoice row as previous it’s look like this

‘e-Invoice Summary’ change to ‘E-Invoice Summary’

In your db with this query :

UPDATE tabReport
SET name = 'E-Invoice Summary'
WHERE name = 'e-Invoice Summary';