aboutsummaryrefslogtreecommitdiff
path: root/src/tools/hash-text/hash-text.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/hash-text/hash-text.vue')
-rw-r--r--src/tools/hash-text/hash-text.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/hash-text/hash-text.vue b/src/tools/hash-text/hash-text.vue
index 45364a3..1bec34f 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<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>