Skip to content

Commit a7d5f6a

Browse files
committed
fix: Removed the // @ts-expect-error assert function comments as they were unnecessary and indicated that TypeScript was expected to throw an error, which is not the case here.
1 parent 3e61697 commit a7d5f6a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/wrapped-keys/src/lib/lit-actions-client/code-repository.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ function assertIsLitActionRepositoryEntry(
5454
if (
5555
typeof entry !== 'object' ||
5656
!entry ||
57-
// @ts-expect-error assert function
5857
('evm' in entry && typeof entry.evm !== 'string') ||
59-
// @ts-expect-error assert function
6058
('solana' in entry && typeof entry.solana !== 'string') ||
6159
Object.keys(entry).some((key) => !['evm', 'solana'].includes(key))
6260
) {

0 commit comments

Comments
 (0)