fix(hash-text): correct copy message

This commit is contained in:
Corentin Thomasset 2022-04-04 00:42:33 +02:00
parent 4ca5fce911
commit bab92ef84f
No known key found for this signature in database
GPG key ID: DBD997E935996158

View file

@ -65,7 +65,7 @@ const clearText = ref('Lorem ipsum dolor sit amet, consectetur adipiscing elit.
const algo = ref<keyof typeof algos>('SHA256')
const hashedText = computed(() => algos[algo.value](clearText.value).toString())
const { copy } = useCopy({ source: hashedText, text: 'Token copied to the clipboard' })
const { copy } = useCopy({ source: hashedText, text: 'Hash copied to the clipboard' })
</script>
<style lang="scss" scoped>