Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
paulclindo committed Feb 24, 2021
1 parent 8212a6a commit 36655c0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions src/components/tables/DaedalusSimpleDesktopTable.js
Expand Up @@ -113,10 +113,6 @@ function DaedalusSimpleDesktopTable({
selectedIdPools,
totalAda,
}: Props): React$Node {
console.log(
'🚀 ~ file: DaedalusSimpleDesktopTable.js ~ line 119 ~ DaedalusSimpleDesktopTable ~ data',
data,
);
const isLoading = status === 'pending' || status === 'idle';
const isRejected = status === 'rejected';
const isResolved = status === 'resolved';
Expand Down
5 changes: 0 additions & 5 deletions src/containers/DaedalusSimpleTable.js
Expand Up @@ -75,7 +75,6 @@ function DaedalusSimpleTable(props: DaedalusSimpleTableProps): Node {
setStatus('pending');
getPoolsByDaedalusSimple()
.then((poolsData: ApiPoolsDaedalusSimpleResponse) => {
console.log('🚀 ~ file: DaedalusSimpleTable.js ~ line 91 ~ .then ~ poolsData', poolsData);
setStatus('resolved');
setRowData(toPoolArray(poolsData.pools));
})
Expand Down Expand Up @@ -133,10 +132,6 @@ function DaedalusSimpleTable(props: DaedalusSimpleTableProps): Node {
pools: ?Array<PoolDaedalusSimple>,
totalAda: ?number,
): ?Array<PoolDaedalusSimple> {
console.log(
'🚀 ~ file: DaedalusSimpleTable.js ~ line 150 ~ DaedalusSimpleTable ~ pools',
pools,
);
if (pools == null) return pools;

// don't filter out saturated pools if the user explicitly searches
Expand Down

0 comments on commit 36655c0

Please sign in to comment.