Skip to content

Commit

Permalink
Fixed merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
glottologist committed Nov 16, 2023
1 parent a8e2ddd commit 45f9edb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion batcher-ui/src/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const getSwaps = async () => {
swaps.map((value, index) => [
getLexicographicalPairName(value.swap.to, value.swap.from),
value,
])<<<<<<< 410-further-split-out-batcher-and-mm-contracts-to-avoid-size-constraint
])
);
console.info('getSwaps swapMap', swapsMap);

Expand Down

0 comments on commit 45f9edb

Please sign in to comment.