Remix - Advanced Patterns
What is wrong with this multi-tenant Remix loader code snippet?
```js
export async function loader({ request }) {
const url = new URL(request.url);
const tenant = url.hostname.split('.')[1];
return new Response(tenant);
}
```
Assuming the hostname is 'tenant1.example.com'.
