Skip to content

Commit 13b726e

Browse files
authored
Merge pull request #421 from Gearbox-protocol/token-compressor-fix
fix: token symbol
2 parents e976118 + ed4dd75 commit 13b726e

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)