Skip to content

Commit

Permalink
Remove the unnecessary console.log() when saving worklogs
Browse files Browse the repository at this point in the history
  • Loading branch information
LSViana committed Oct 18, 2024
1 parent f1e2205 commit 75f4313
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions composables/server/worklog-tracker/useWorklogStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function useWorklogStorage() {

const jiraResponseBody = await response.json() as { id: string; issueId: string; }

const result = await supabaseClient.from('worklogs').insert({
await supabaseClient.from('worklogs').insert({
id: jiraResponseBody.id,
issue_id: jiraResponseBody.issueId,
ticket: worklogItem.ticket,
Expand All @@ -91,8 +91,6 @@ export function useWorklogStorage() {
credential_id: credentialsId
})

console.log(result)

return new WorklogItem(
worklogItem.ticket,
worklogItem.content,
Expand Down

0 comments on commit 75f4313

Please sign in to comment.