From 597940606e8e382fc5e4cb1fa8da29ab2fb38722 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Mon, 29 Apr 2024 12:31:12 +0100 Subject: [PATCH] update JSDoc --- libs/remix-ui/workspace/src/lib/components/file-explorer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx b/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx index d9618e8453..ff2daf211e 100644 --- a/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx +++ b/libs/remix-ui/workspace/src/lib/components/file-explorer.tsx @@ -298,7 +298,7 @@ export const FileExplorer = (props: FileExplorerProps) => { * without showing a modal dialong to the user. * @param dest path of the destination * @param src path of the source - * @returns {void} + * @returns {Promise} */ const moveFileSilently = async (dest: string, src: string) => { if (dest.length === 0 || src.length === 0) return @@ -321,7 +321,7 @@ export const FileExplorer = (props: FileExplorerProps) => { * without showing a modal dialong to the user. * @param dest path of the destination * @param src path of the source - * @returns {void} + * @returns {Promise} */ const moveFolderSilently = async (dest: string, src: string) => { if (dest.length === 0 || src.length === 0) return