Skip to content

Commit ed4dd75

Browse files
committed
fix: token symbol
1 parent e976118 commit ed4dd75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/permissionless/bindings/compressors/token-compressor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class TokenCompressorContract extends BaseContract<typeof abi> {
119119
const postfix = multivaultSymbol ? `[${multivaultSymbol}]` : "";
120120
return {
121121
...tokenInfo,
122-
symbol: `${tokenInfo.symbol} ${postfix}`,
122+
symbol: !postfix ? tokenInfo.symbol : `${tokenInfo.symbol} ${postfix}`,
123123
};
124124
});
125125

0 commit comments

Comments
 (0)