Wix fetch console log error

Hi, I’ve been getting some of these console log errors when i first load and run my site. A check with Wix AI Assistant says it’s an internal Wix issue. Bringing it up to the Wix engineers’ attention.

148b9187-e372-41f5-9b16-f235ad93ef45:7

   Uncaught (in promise) TypeError: Failed to fetch
at 148b9187-e372-41f5-9b16-f235ad93ef45:7:7
at analytics-event-adapter.bundle.min.js:1:22125
at Array.forEach (<anonymous>)
at Object.qe [as report] (analytics-event-adapter.bundle.min.js:1:22098)
at analytics-event-adapter.bundle.min.js:1:3766
at Array.forEach (<anonymous>)
at analytics-event-adapter.bundle.min.js:1:3729
at Array.forEach (<anonymous>)
at h (analytics-event-adapter.bundle.min.js:1:3364)
at e.trackEventToListenersOnly (analytics-event-adapter.bundle.min.js:1:24310)

and this one. this seems to be a Wix Forms error as utils.js is within Wix Forms.

utils.js:11 react-i18next:: It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.

||Tt|@|utils.js:11|

Thanks for sharing. Just to confirm there’s no custom code on this page, this is a console error that is appearing when you load your site?

Hi anthony,

Yes. There is only this custom code on my master page:

import { authentication } from ‘wix-members’;
import wixLocation from ‘wix-location’;

$w.onReady(async () => {
authentication.onLogin(() => {
wixLocation.to(wixLocation.url);
});
});

I’ve also added a dataFetch.jsw and oAuth.jsw file on Backend for authentication with Google API. That’s it.