removed extra from store

This commit is contained in:
ojack
2024-02-09 17:44:03 +01:00
parent b8722b0c77
commit 9b3bdeae22

View File

@@ -104,24 +104,3 @@ export default function store(state, emitter) {
// })
}
function showConfirmation(successCallback, terminateCallback) {
var c = prompt(`
HYDRA SKETCH GALLERY
///////////////////////////////////////
🎨 Click 'OK' to add your sketch and screenshot to the gallery of hydra sketches at https://botsin.space/@hydra.
‼️ Make sure you are ready to share - there is no undo button!
💖 Thank you for sharing! You are also warmly invited to join the the live coding server on the fediverse at https://social.toplap.org/.
`
, 'your name, mastodon handle, and/or a short description')
// console.log('confirm value', c)
if (c !== null) {
successCallback(c)
} else {
terminateCallback()
}
}