better-auth-studio 1.0.52-beta.1 → 1.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/routes.js CHANGED
@@ -1351,7 +1351,7 @@ export function createRoutes(authConfig, configPath, geoDbPath) {
1351
1351
  fetchOptions.body = check.body;
1352
1352
  }
1353
1353
  const response = await fetch(targetUrl, fetchOptions);
1354
- const ok = response.status < 500 && response.status !== 404 && response.status !== 302;
1354
+ const ok = response.status !== 404 && response.status !== 302;
1355
1355
  if (!ok) {
1356
1356
  return {
1357
1357
  label: check.label,