Skip to content

Commit

Permalink
Lint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau committed Sep 26, 2024
1 parent 2af0f51 commit 1f31f38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
import { RequestMethod, VaultHistoricalPnl } from '../../../../src/types';
import request from 'supertest';
import { getFixedRepresentation, sendRequest } from '../../../helpers/helpers';
import config from '../../../../src/config';
import { DateTime } from 'luxon';
import Big from 'big.js';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,15 +459,15 @@ async function getVaultMapping(): Promise<VaultMapping> {
const vaults: VaultFromDatabase[] = await VaultTable.findAll(
{},
[],
{}
{},
);
return _.zipObject(
return _.zipObject(
vaults.map((vault: VaultFromDatabase): string => {
return SubaccountTable.uuid(vault.address, 0);
}),
vaults.map((vault: VaultFromDatabase): string => {
return vault.clobPairId;
}),
}),
);
}

Expand Down

0 comments on commit 1f31f38

Please sign in to comment.