Skip to content

Commit ca966d8

Browse files
committed
fix(lint): ts-expect-error outdated type signature for @filen/network-drive
1 parent 68b2b84 commit ca966d8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/app/featureInterfaces/driveMountingInterface.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import VirtualDrive, { isFUSE3InstalledOnLinux, isWinFSPInstalled, isMacFUSEInstalled, isFUSETInstalledOnMacOS } from "@filen/network-drive"
1+
import { NetworkDrive, isFUSE3InstalledOnLinux, isWinFSPInstalled, isMacFUSEInstalled, isFUSETInstalledOnMacOS } from "@filen/network-drive"
22
import dedent from "dedent"
33
import { f } from "../f"
44

@@ -30,7 +30,8 @@ export const driveMountingCommand = f.feature({
3030
if (!await isMacFUSEInstalled() && !await isFUSETInstalledOnMacOS()) app.errExit("macFUSE or FUSE-T is needed on macOS for network drive mounting, but neither could be found.")
3131
}
3232

33-
const virtualDrive = new VirtualDrive({
33+
const virtualDrive = new NetworkDrive({
34+
// @ts-expect-error somehow outdated signature
3435
sdk: filen,
3536
mountPoint: args.mountPoint
3637
})

0 commit comments

Comments
 (0)