Skip to content

Commit

Permalink
Initial changes to get development working
Browse files Browse the repository at this point in the history
  • Loading branch information
strike-digital committed Jul 4, 2024
1 parent eecc392 commit 664dc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function handleErrors(func: () => Promise<void>) {
try {
await func();
}
catch (err) {
catch (err: any) {
if (err.message !== CANCEL) {
vscode.window.showErrorMessage(err.message);
}
Expand Down

0 comments on commit 664dc4d

Please sign in to comment.