diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-05-02 22:14:17 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-06-20 12:34:37 +0200 |
commit | 1d0a65db9304f074f69cacaddbe529cf3c054ffa (patch) | |
tree | 37595a0bc1c493f8f4b410eb8d07cbcb9ea330f7 /apps/files_sharing/src | |
parent | c251e8f2aa10f3d8a9585ee07821fae8031e3436 (diff) | |
download | nextcloud-server-1d0a65db9304f074f69cacaddbe529cf3c054ffa.tar.gz nextcloud-server-1d0a65db9304f074f69cacaddbe529cf3c054ffa.zip |
fix: Do not import from `axios` but only `@nextcloud/axios`
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/services/SharingService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/services/SharingService.ts b/apps/files_sharing/src/services/SharingService.ts index ad76879257f..119b008c64d 100644 --- a/apps/files_sharing/src/services/SharingService.ts +++ b/apps/files_sharing/src/services/SharingService.ts @@ -3,7 +3,7 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ /* eslint-disable camelcase, n/no-extraneous-import */ -import type { AxiosPromise } from 'axios' +import type { AxiosPromise } from '@nextcloud/axios' import type { OCSResponse } from '@nextcloud/typings/ocs' import { Folder, File, type ContentsWithRoot, Permission } from '@nextcloud/files' |