Last active
May 19, 2021 02:59
-
-
Save magyarmelinda/cd88e917b188bfaf422b60f9344c0fc9 to your computer and use it in GitHub Desktop.
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
// Delete Thread/Comment Image | |
const deleteImage = (folder, id) => { | |
const ref = firebase.storage().ref(folder).child(id + '.jpg'); | |
// Delete the file | |
ref.delete(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment