Skip to content

Commit

Permalink
rm logs
Browse files Browse the repository at this point in the history
  • Loading branch information
walmat committed Sep 19, 2024
1 parent fe9505c commit 3f36f90
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/screens/SendSheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ export default function SendSheet(props) {
const isValid = checkIsValidAddressOrDomainFormat(debouncedRecipient);
if (isValid) {
const resolvedAddress = await resolveNameOrAddress(debouncedRecipient);
console.log({ resolvedAddress });
if (resolvedAddress && typeof resolvedAddress === 'string') {
setToAddress(resolvedAddress);
} else {
Expand Down Expand Up @@ -597,14 +596,6 @@ export default function SendSheet(props) {
let disabled = true;
let label = lang.t('button.confirm_exchange.enter_amount');

console.log({
isEmpty: isEmpty(gasFeeParamsBySpeed),
notSelectedGasFee: !selectedGasFee,
gasFee: isEmpty(selectedGasFee?.gasFee),
toAddress: !toAddress,
l1GasFeeOptimism: needsL1SecurityFeeChains.includes(currentChainId) && l1GasFeeOptimism === null,
});

if (isENS && !ensProfile.isSuccess) {
label = lang.t('button.confirm_exchange.loading');
disabled = true;
Expand Down Expand Up @@ -720,7 +711,6 @@ export default function SendSheet(props) {
const onChangeInput = useCallback(
text => {
const isValid = checkIsValidAddressOrDomainFormat(text);
console.log({ isValid, text });
if (!isValid) {
setIsValidAddress();
setToAddress();
Expand Down

0 comments on commit 3f36f90

Please sign in to comment.