fix: missing Trash2 import causing runtime crash on bulk delete in Tasks.jsx#775
Open
Codewithpabitra wants to merge 2 commits into
Open
fix: missing Trash2 import causing runtime crash on bulk delete in Tasks.jsx#775Codewithpabitra wants to merge 2 commits into
Codewithpabitra wants to merge 2 commits into
Conversation
Contributor
Author
|
This was a very minimal change made issue that's why simply created the PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 Description
Fixed a runtime crash on the Tasks page caused by a missing
Trash2icon import. The bulk delete button uses<Trash2 />fromlucide-reactbut it was never imported, so selecting tasks and clicking the delete button would throw aReferenceErrorand break the page entirely.🔗 Related Issue
Closes #772
🛠 Changes Made
Trash2to the existinglucide-reactimport infrontend/src/pages/Tasks.jsx✅ Checklist
🚀 Notes for Reviewers
One-line change - just adding
Trash2to the lucide-react import.