Skip to content

Commit

Permalink
feat: remove console logs on Wells.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Space-Bean committed Sep 7, 2024
1 parent 3aa8251 commit eb860b6
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions projects/dex-ui/src/pages/Wells.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ export const Wells = () => {
const { data: wellStats = [] } = useBasinStats();
const sdk = useSdk();

console.log(wells);

const [tab, showTab] = useState<number>(0);

const { data: lpTokenPrices, isLoading: lpTokenPricesLoading } = useWellLPTokenPrice(wells);
Expand All @@ -59,24 +57,6 @@ export const Wells = () => {
wellNamesLoading
);

React.useEffect(() => {
console.log("loading", {
isLoading,
apysLoading,
positionsLoading,
lpTokenPricesLoading,
tokenPricesLoading,
wellNamesLoading
});
}, [
isLoading,
apysLoading,
positionsLoading,
lpTokenPricesLoading,
tokenPricesLoading,
wellNamesLoading
]);

if (error) {
return <Error message={error?.message} errorOnly />;
}
Expand Down

0 comments on commit eb860b6

Please sign in to comment.