3min dapp and send ecr20 both failed for me

https://inkloigqrgcj.usemoralis.com:2053/server

i noticed the log in user was blank and i wasnt even able to get a metamask pop up when these lines were added in

  const query = new Moralis.Query("EthTransactions");
  query.equalTo("from_address", user.get("ethAddress"));
  const results = await query.find();

Hey @zembahk

Could you please share the error message from the console? :raised_hands:

howdy, just got back form work.

moralis.js:4497 Uncaught (in promise) Error: Non ethereum enabled browser
    at moralis.js:4497
    at tryCatch (moralis.js:25126)
    at Generator.invoke [as _invoke] (moralis.js:25356)
    at Generator.next (moralis.js:25181)
    at asyncGeneratorStep (moralis.js:24573)
    at _next (moralis.js:24595)
    at moralis.js:24602
    at new Promise (<anonymous>)
    at new Wrapper (moralis.js:27591)
    at moralis.js:24591

i had an await not in an async function was the first error. i put it in the async login function and used brave, i havent used that wallet yet, so it might be working there.
i was able to get the login to work with chrome. is there away to use it still for the tx info stuff?

Hi,

  query = new Moralis.Query("EthTransactions");
  results = await query.find();

works fine for me after login is done.

Cool, yeah getting rid of query.equalTo("from_address", user.get("ethAddress")); did the trick for chrome.