update moveFile

pull/5370/head
Joseph Izang 3 months ago committed by Aniket
parent 4428310fe7
commit e3e513ffbd
  1. 6
      libs/remix-ui/workspace/src/lib/actions/index.ts

@ -674,7 +674,8 @@ export const moveFile = async (src: string, dest: string) => {
if (src === dest) return // if you cut and paste to the same location then no need to move anything if (src === dest) return // if you cut and paste to the same location then no need to move anything
try { try {
await fileManager.moveFile(src, dest) const updatedDestPath = await fileManager.currentPath()
await fileManager.moveFile(src, updatedDestPath)
} catch (error) { } catch (error) {
dispatch(displayPopUp('Oops! An error occurred while performing moveFile operation.' + error)) dispatch(displayPopUp('Oops! An error occurred while performing moveFile operation.' + error))
} }
@ -686,7 +687,8 @@ export const moveFolder = async (src: string, dest: string) => {
if (src === dest) return // if you cut and paste to the same location then no need to move anything if (src === dest) return // if you cut and paste to the same location then no need to move anything
try { try {
await fileManager.moveDir(src, dest) const updatedDestPath = await fileManager.currentPath()
await fileManager.moveDir(src, updatedDestPath)
} catch (error) { } catch (error) {
dispatch(displayPopUp('Oops! An error occurred while performing moveDir operation.' + error)) dispatch(displayPopUp('Oops! An error occurred while performing moveDir operation.' + error))
} }

Loading…
Cancel
Save