Skip to content

Commit

Permalink
fix: fixed temporary issue with mixed typings
Browse files Browse the repository at this point in the history
  • Loading branch information
adam_unchained committed Oct 25, 2023
1 parent ec4754b commit 85e5b8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/@core/pipes/formatToken/format-token.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface ConvertValue {
export class FormatTokenPipe implements PipeTransform {
public constructor(private cache: CacheService) {}
public async transformTest(
_value: number | null | undefined | ConvertValue,
_value: any,
_tokenUidOrNetwork?: string | null,
_removeZeroes = false,
_showUnit = true,
Expand All @@ -29,7 +29,7 @@ export class FormatTokenPipe implements PipeTransform {
}

public async transform(
value: string | number | null | undefined | ConvertValue,
value: any,
tokenUidOrNetwork?: string | null,
removeZeroes = false,
showUnit = true,
Expand Down

0 comments on commit 85e5b8e

Please sign in to comment.