1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-19 01:50:06 +00:00

chore: fix const

This commit is contained in:
Mihajlo Medjedovic
2021-01-28 11:25:21 +01:00
parent cc594eca52
commit 7a6e6e8333

View File

@@ -1329,7 +1329,7 @@ export class SASViyaApiClient {
) { ) {
// If target path is existing folder, than keep source folder name, othervise rename it with given target folder name // If target path is existing folder, than keep source folder name, othervise rename it with given target folder name
const sourceFolderName = sourceFolder.split('/').pop() as string const sourceFolderName = sourceFolder.split('/').pop() as string
let targetFolderDetails = await this.getFolderDetails( const targetFolderDetails = await this.getFolderDetails(
targetParentFolder, targetParentFolder,
accessToken accessToken
) )