Remix - Advanced Patterns
Identify the error in this multi-tenant Remix loader code:
```js
export async function loader({ request }) {
const tenant = request.url.hostname.split('.')[0];
return new Response(tenant);
}
```
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions