Skip to content

Commit

Permalink
chore: remove logs and commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Jan 15, 2025
1 parent 155ab44 commit d95cba0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ const Review: FC = () => {
}, [chain, combinedComputed.indexedByChainId]);

const handleGoToTokenPage = useCallback(async () => {
console.log("handleGoToTokenPage", chainConfig, state.txState.type === "deployed");
if (chainConfig && state.txState.type === "deployed") {
actions.reset();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,6 @@ const ChainsDropdown: FC<Props> = (props) => {
[chain?.id, allChains, state.selectedChainId]
);

// const eligibleChains = Maybe.of(props.chains ?? chains).mapOr([], (chains) =>
// chains.filter((chain) => chain.chain_id !== selectedChain?.chain_id)
// );
const eligibleChains = Maybe.of(props.chains ?? allChains).mapOr([], (chains) =>
chains.filter((chain) => chain.chain_id !== selectedChain?.chain_id)
);
Expand Down

0 comments on commit d95cba0

Please sign in to comment.