Skip to content

Commit

Permalink
prettier update
Browse files Browse the repository at this point in the history
  • Loading branch information
BigDealCompany committed Jan 23, 2024
1 parent 149f1f0 commit 890aa52
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 49 deletions.
3 changes: 0 additions & 3 deletions src/components/CurrencyInputPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,12 +299,9 @@ export default function CurrencyInputPanel({
)}
<div className="balanceDigit">134.1340</div>
</div>


</RowBetween>
</CurrencySelectContainer>
</InputRow>

</Container>
{!disableCurrencySelect && onCurrencySelect && (
<CurrencySearchModal
Expand Down
1 change: 0 additions & 1 deletion src/pages/Swap/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,6 @@ export default function Swap() {
<div>
<AdvancedSwapDetailsDropdown trade={trade} />
</div>

</Container>
</>
);
Expand Down
2 changes: 1 addition & 1 deletion src/state/multicall/updater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
} from './actions';

// chunk calls so we do not exceed the gas limit
const CALL_CHUNK_SIZE = 50;
const CALL_CHUNK_SIZE = 10;

/**
* Fetches a chunk of calls, enforcing a minimum block number constraint
Expand Down
88 changes: 44 additions & 44 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"extends": "./tsconfig.path.json",
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"types": [
"react-spring",
"jest"
]
},
"exclude": [
"node_modules",
"cypress"
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"src/components/Confetti/index.js"
]
}
{
"extends": "./tsconfig.path.json",
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"types": [
"react-spring",
"jest"
]
},
"exclude": [
"node_modules",
"cypress"
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"src/components/Confetti/index.js"
]
}

0 comments on commit 890aa52

Please sign in to comment.