From f0a2d3d43ac4a171d71507ae388fd025040c45d5 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Sun, 28 Jul 2024 09:25:45 -0400 Subject: [PATCH] fix: Remove ts-expect-error resolved in Deno 1.45.4 --- bids-validator/src/files/browser.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/bids-validator/src/files/browser.ts b/bids-validator/src/files/browser.ts index 190a0cb8a..296c402e4 100644 --- a/bids-validator/src/files/browser.ts +++ b/bids-validator/src/files/browser.ts @@ -16,7 +16,6 @@ export class BIDSFileBrowser implements BIDSFile { this.#file = file this.#ignore = ignore this.name = file.name - // @ts-expect-error webkitRelativePath does exist in the browser const relativePath = this.#file.webkitRelativePath const prefixLength = relativePath.indexOf('/') this.path = relativePath.substring(prefixLength)