Skip to content

Commit

Permalink
Merge pull request #252 from divyanshugour/main
Browse files Browse the repository at this point in the history
Fixed: used console.error instead of console.log
  • Loading branch information
adityasharma7 authored Oct 14, 2022
2 parents 5a61200 + 6190c8b commit 19fe741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/modules/webhook/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const actions: ActionTree<WebhookState, RootState> = {
showToast(translate("Webhook unsubscribed successfully"));
}
} catch(err) {
console.log(err)
console.error(err)
showToast(translate("Something went wrong"));
} finally {
dispatch('fetchWebhooks')
Expand All @@ -56,4 +56,4 @@ const actions: ActionTree<WebhookState, RootState> = {
}
}

export default actions
export default actions

0 comments on commit 19fe741

Please sign in to comment.