Describe the bug
In a catch we attempt this line:
console.error(Failed to import file ${element})
Which throws a new exception since element is not defined
Expected behavior
The line should read:
console.error(Failed to import file ${theRouteToShow.importFile})
Describe the bug In a
catch
we attempt this line:console.error(
Failed to import file ${element})
Which throws a new exception sinceelement
is not definedExpected behavior The line should read:
console.error(
Failed to import file ${theRouteToShow.importFile})