Skip to content

Commit

Permalink
resolve error in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettladley committed Feb 2, 2024
1 parent a4edbc8 commit 66d4f36
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions backend/src/services/tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,6 @@ func (t *TagService) GetTag(categoryID string, tagID string) (*models.Tag, *erro
return nil, idErr
}

}

tagIDAsUUID, idErr := utilities.ValidateID(tagID)

if idErr != nil {
return nil, idErr
}

return transactions.GetTag(t.DB, *categoryIDAsUUID, *tagIDAsUUID)
}

Expand Down

0 comments on commit 66d4f36

Please sign in to comment.