Skip to content

Instantly share code, notes, and snippets.

@magyarmelinda
Last active May 19, 2021 02:59
Show Gist options
  • Save magyarmelinda/cd88e917b188bfaf422b60f9344c0fc9 to your computer and use it in GitHub Desktop.
Save magyarmelinda/cd88e917b188bfaf422b60f9344c0fc9 to your computer and use it in GitHub Desktop.
// 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