From 0868ec59c7f6216bae798211733c515fdf296fab Mon Sep 17 00:00:00 2001 From: Bernardo Garces Chapero Date: Mon, 25 Nov 2024 16:09:40 +0000 Subject: [PATCH] linting --- packages/adapters-library/src/types/adapter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/adapters-library/src/types/adapter.ts b/packages/adapters-library/src/types/adapter.ts index d14673939..20f95c3c1 100644 --- a/packages/adapters-library/src/types/adapter.ts +++ b/packages/adapters-library/src/types/adapter.ts @@ -15,8 +15,8 @@ export type TokenType = (typeof TokenType)[keyof typeof TokenType] export const UnderlyingTokenTypeMap: { [key in TokenType]: - | typeof TokenType.Underlying - | typeof TokenType.UnderlyingClaimable + | typeof TokenType.Underlying + | typeof TokenType.UnderlyingClaimable } = { [TokenType.UnderlyingClaimable]: TokenType.UnderlyingClaimable, [TokenType.Underlying]: TokenType.Underlying,