From 5bb23aad473e4eaaa6fb8fc371882ed67d01617b Mon Sep 17 00:00:00 2001 From: Adam DeHaven <2229946+adamdehaven@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:11:25 -0400 Subject: [PATCH] fix: tags (#2158) --- src/utilities/copyTextToClipboard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utilities/copyTextToClipboard.ts b/src/utilities/copyTextToClipboard.ts index 5e42d4a896..0efe9a24d1 100644 --- a/src/utilities/copyTextToClipboard.ts +++ b/src/utilities/copyTextToClipboard.ts @@ -1,8 +1,8 @@ /** * Copies a piece of text to the clipboard. Adapted from [StackOverflow][1]. * - * @param {string} text The text to copy - * @returns {Promise} Whether the operation was successful + * @param {string} text The text to copy. + * @returns {Promise} Whether the operation was successful. */ export async function copyTextToClipboard(text: string): Promise { if (navigator.clipboard) {