From bab92ef84f66372df40ce385c2949518ed158427 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Mon, 4 Apr 2022 00:42:33 +0200 Subject: [PATCH] fix(hash-text): correct copy message --- src/tools/hash-text/hash-text.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' })