Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
meetulr committed Oct 27, 2024
1 parent cef93bf commit 8c91b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolvers/Mutation/removeFromUserTags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const removeFromUserTags: MutationResolvers["removeFromUserTags"] =
}

// Get all descendant tags of the selected tags (including the selected tags themselves)
let allTagsToRemove = new Set<string>();
const allTagsToRemove = new Set<string>();
let currentParents = selectedTags.map((tag) => tag._id.toString());

while (currentParents.length > 0) {
Expand Down

0 comments on commit 8c91b56

Please sign in to comment.