const response = yield* authFns
.handleAuthorize({ query, path })
.pipe(
Effect.catchTag('FetchError', () =>
HttpError.unauthorizedError('Unauthorized')
),
);
const response = yield* authFns
.handleAuthorize({ query, path })
.pipe(
Effect.catchTag('FetchError', () =>
HttpError.unauthorizedError('Unauthorized')
),
);