Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.

workaround for sideload issue #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
3 changes: 2 additions & 1 deletion HumongousInsuranceAgentsAddinWeb/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,8 @@
// Handle errors
function handleError(error) {
// Always be sure to catch any accumulated errors that bubble up from the Excel.run execution
app.showNotification("Error: " + error);

showNotification("Error: " + error);
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
Expand Down