i am using the parse-server-migration setup in the authService.ts file:
const result = await Moralis.Auth.requestMessage({
address,
chain,
networkType,
domain: url.hostname,
uri: url.toString(),
statement: url.hostname,
notBefore: now.toISOString(),
expirationTime: expirationTime.toISOString(),
timeout: TIMEOUT,
});
my parser-server domain is different than the dapp domain. so i always get the metamask unsafe deceptive site notification because the domains are different. if my server and my dapp are on two different domains, how can i avoid this message? or do they both have to be on the same domain