Skip to content

Commit

Permalink
Merge branch '410-further-split-out-batcher-and-mm-contracts-to-avoid…
Browse files Browse the repository at this point in the history
…-size-constraint' of github.com:marigold-dev/batcher into 410-further-split-out-batcher-and-mm-contracts-to-avoid-size-constraint
  • Loading branch information
glottologist committed Nov 20, 2023
2 parents 48e7adc + ce17e16 commit fe60680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batcher-ui/src/utils/token-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const getLexicographicalPairName = (
from: string
): string => {
const comp = to.localeCompare(from);
if (comp < 0){
if (comp < 0) {
return `${to}-${from}`;
} else {
return `${from}-${to}`;
Expand Down

0 comments on commit fe60680

Please sign in to comment.