const res = yield* pipe(
HttpServerResponse.json(body),
HttpServerResponse.setCookie('acr_values', acr_value),
Effect.catchTag('CookieError', () => new HttpApiError.InternalServerError()),
);
return res;
const res = yield* pipe(
HttpServerResponse.json(body),
HttpServerResponse.setCookie('acr_values', acr_value),
Effect.catchTag('CookieError', () => new HttpApiError.InternalServerError()),
);
return res;