We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e976118 + ed4dd75 commit 13b726eCopy full SHA for 13b726e
src/permissionless/bindings/compressors/token-compressor.ts
@@ -119,7 +119,7 @@ export class TokenCompressorContract extends BaseContract<typeof abi> {
119
const postfix = multivaultSymbol ? `[${multivaultSymbol}]` : "";
120
return {
121
...tokenInfo,
122
- symbol: `${tokenInfo.symbol} ${postfix}`,
+ symbol: !postfix ? tokenInfo.symbol : `${tokenInfo.symbol} ${postfix}`,
123
};
124
});
125
0 commit comments