diff --git a/src/tools/hash-text/hash-text.vue b/src/tools/hash-text/hash-text.vue index 45364a33..1bec34f0 100644 --- a/src/tools/hash-text/hash-text.vue +++ b/src/tools/hash-text/hash-text.vue @@ -65,7 +65,7 @@ const clearText = ref('Lorem ipsum dolor sit amet, consectetur adipiscing elit. const algo = ref('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' })