[GH-ISSUE #8868] Missing docs page for unable_to_create_user + broken Ask AI link #28542

Closed
opened 2026-04-17 19:59:37 -05:00 by GiteaMirror · 4 comments
Owner

Originally created by @Bekione on GitHub (Mar 31, 2026).
Original GitHub issue: https://github.com/better-auth/better-auth/issues/8868

Description

When an authentication error occurs with error=unable_to_create_user, the error page is displayed correctly, but there is an inconsistency between the app behavior and the documentation.

Steps to reproduce

  1. Trigger an auth flow that results in error=unable_to_create_user
  2. You are redirected to /api/auth/error?error=unable_to_create_user
  3. Click the "Ask AI" button

Current behavior

  • The "Ask AI" button redirects to:
    /docs/reference/errors/unable_to_create_user?askai=What%20does%20the%20error%20code%20unable_to_create_user%20mean%3F
  • This page returns 404 (Page Not Found)
  • The error unable_to_create_user is not listed in the official errors documentation

Expected behavior

  • Either:
    • A documentation page exists for unable_to_create_user, OR
    • The "Ask AI" button should not link to a non-existent route

Possible fix

I’d be happy to contribute by:

  • Adding the missing docs page for unable_to_create_user
  • Updating the errors list
  • Or adjusting the "Ask AI" link behavior if needed
Originally created by @Bekione on GitHub (Mar 31, 2026). Original GitHub issue: https://github.com/better-auth/better-auth/issues/8868 ## Description When an authentication error occurs with `error=unable_to_create_user`, the error page is displayed correctly, but there is an inconsistency between the app behavior and the documentation. ## Steps to reproduce 1. Trigger an auth flow that results in `error=unable_to_create_user` 2. You are redirected to `/api/auth/error?error=unable_to_create_user` 3. Click the **"Ask AI"** button ## Current behavior - The "Ask AI" button redirects to: `/docs/reference/errors/unable_to_create_user?askai=What%20does%20the%20error%20code%20unable_to_create_user%20mean%3F` - This page returns **404 (Page Not Found)** - The error `unable_to_create_user` is **not listed** in the official errors documentation ## Expected behavior - Either: - A documentation page exists for `unable_to_create_user`, OR - The "Ask AI" button should not link to a non-existent route ## Possible fix I’d be happy to contribute by: - Adding the missing docs page for `unable_to_create_user` - Updating the errors list - Or adjusting the "Ask AI" link behavior if needed
GiteaMirror added the docs label 2026-04-17 19:59:37 -05:00
Author
Owner

@dosubot[bot] commented on GitHub (Mar 31, 2026):

Hi @Bekione! I'm Dosu and I’m helping the better-auth team.

Good catch! The unable_to_create_user error originates in link-account.ts as the string "unable to create user", which gets converted to underscores via .split(" ").join("_") in callback.ts (line 270). The "Ask AI" button in the error page template always links to https://better-auth.com/docs/reference/errors/{code}, so any undocumented error code results in a 404.

It's worth noting this isn't the only missing error code. Looking at the codebase, the errors docs index lists 12 error codes, but at least 5 additional codes can appear on the error page without having a corresponding docs page:

Missing Error Code Source
unable_to_create_user link-account.ts:216-228
unable_to_create_session link-account.ts:232-237
account_not_linked link-account.ts:63-66
invalid_code callback.ts:141-144
internal_server_error link-account.ts:28-36

Additionally, state_mismatch and unknown have .mdx doc pages but aren't listed in the errors index.

If you're looking to contribute, addressing all of these in one PR would be a great improvement! Each would need a new .mdx file in docs/content/docs/reference/errors/ plus an entry in the index.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Chat with Dosu Open in Cursor Join Discord Share on X

<!-- gh-comment-id:4166458782 --> @dosubot[bot] commented on GitHub (Mar 31, 2026): <!-- Greeting --> Hi @Bekione! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the better-auth team. <!-- Answer --> Good catch! The `unable_to_create_user` error originates in [`link-account.ts`](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts#L216-L228) as the string `"unable to create user"`, which gets converted to underscores via `.split(" ").join("_")` in [`callback.ts` (line 270)](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/api/routes/callback.ts#L270). The "Ask AI" button in the [error page template](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/api/routes/error.ts#L344-L365) always links to `https://better-auth.com/docs/reference/errors/{code}`, so any undocumented error code results in a 404. It's worth noting this isn't the only missing error code. Looking at the codebase, the [errors docs index](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/index.mdx#L8-L21) lists 12 error codes, but at least **5 additional codes** can appear on the error page without having a corresponding docs page: | Missing Error Code | Source | |---|---| | `unable_to_create_user` | [link-account.ts:216-228](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts#L216-L228) | | `unable_to_create_session` | [link-account.ts:232-237](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts#L232-L237) | | `account_not_linked` | [link-account.ts:63-66](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts#L63-L66) | | `invalid_code` | [callback.ts:141-144](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/api/routes/callback.ts#L141-L144) | | `internal_server_error` | [link-account.ts:28-36](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts#L28-L36) | Additionally, `state_mismatch` and `unknown` have `.mdx` doc pages but aren't listed in the [errors index](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/index.mdx#L8-L21). If you're looking to contribute, addressing all of these in one PR would be a great improvement! Each would need a new `.mdx` file in `docs/content/docs/reference/errors/` plus an entry in the index. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=brand-link).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=great_response&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=irrelevant_answer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=incorrect_sources&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=too_verbose&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=hallucination&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=bug_report&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-bug_report) | [Other](https://app.dosu.dev/response-feedback/5c574339-f223-4bd0-80fc-49c1ec99639c?feedback_type=other&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-other)</sup> [![Chat with Dosu](https://dosu.dev/dosu-chat-badge.svg)](https://app.dosu.dev/cdda13d9-dd27-4d31-b09a-5d8bec92de21/ask?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=chat-badge)&nbsp;[![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=Good%20catch%21%20The%20%60unable_to_create_user%60%20error%20originates%20in%20%5B%60link-account.ts%60%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts%23L216-L228%29%20as%20the%20string%20%60%22unable%20to%20create%20user%22%60%2C%20which%20gets%20converted%20to%20underscores%20via%20%60.split%28%22%20%22%29.join%28%22_%22%29%60%20in%20%5B%60callback.ts%60%20%28line%20270%29%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/api/routes/callback.ts%23L270%29.%20The%20%22Ask%20AI%22%20button%20in%20the%20%5Berror%20page%20template%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/api/routes/error.ts%23L344-L365%29%20always%20links%20to%20%60https%3A//better-auth.com/docs/reference/errors/%7Bcode%7D%60%2C%20so%20any%20undocumented%20error%20code%20results%20in%20a%20404.%0A%0AIt%27s%20worth%20noting%20this%20isn%27t%20the%20only%20missing%20error%20code.%20Looking%20at%20the%20codebase%2C%20the%20%5Berrors%20docs%20index%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/index.mdx%23L8-L21%29%20lists%2012%20error%20codes%2C%20but%20at%20least%20%2A%2A5%20additional%20codes%2A%2A%20can%20appear%20on%20the%20error%20page%20without%20having%20a%20corresponding%20docs%20page%3A%0A%0A%7C%20Missing%20Error%20Code%20%7C%20Source%20%7C%0A%7C---%7C---%7C%0A%7C%20%60unable_to_create_user%60%20%7C%20%5Blink-account.ts%3A216-228%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts%23L216-L228%29%20%7C%0A%7C%20%60unable_to_create_session%60%20%7C%20%5Blink-account.ts%3A232-237%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts%23L232-L237%29%20%7C%0A%7C%20%60account_not_linked%60%20%7C%20%5Blink-account.ts%3A63-66%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts%23L63-L66%29%20%7C%0A%7C%20%60invalid_code%60%20%7C%20%5Bcallback.ts%3A141-144%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/api/routes/callback.ts%23L141-L144%29%20%7C%0A%7C%20%60internal_server_error%60%20%7C%20%5Blink-account.ts%3A28-36%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/packages/better-auth/src/oauth2/link-account.ts%23L28-L36%29%20%7C%0A%0AAdditionally%2C%20%60state_mismatch%60%20and%20%60unknown%60%20have%20%60.mdx%60%20doc%20pages%20but%20aren%27t%20listed%20in%20the%20%5Berrors%20index%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/index.mdx%23L8-L21%29.%0A%0AIf%20you%27re%20looking%20to%20contribute%2C%20addressing%20all%20of%20these%20in%20one%20PR%20would%20be%20a%20great%20improvement%21%20Each%20would%20need%20a%20new%20%60.mdx%60%20file%20in%20%60docs/content/docs/reference/errors/%60%20plus%20an%20entry%20in%20the%20index.)&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=join-discord)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/better-auth/better-auth/issues/8868)
Author
Owner

@Bekione commented on GitHub (Apr 1, 2026):

@dosu
Thanks for the detailed breakdown!

I can see that multiple error codes are currently missing from the docs and index. I’d like to work on a PR that:

  • Adds missing docs pages for all uncovered error codes
  • Updates the errors index to include them
  • Ensures consistency between generated error codes and documentation

Let me know if that approach sounds good 👍

<!-- gh-comment-id:4166552624 --> @Bekione commented on GitHub (Apr 1, 2026): @dosu Thanks for the detailed breakdown! I can see that multiple error codes are currently missing from the docs and index. I’d like to work on a PR that: - Adds missing docs pages for all uncovered error codes - Updates the errors index to include them - Ensures consistency between generated error codes and documentation Let me know if that approach sounds good 👍
Author
Owner

@dosubot[bot] commented on GitHub (Apr 1, 2026):

That sounds like a great plan! Here's a quick reference to help you get started:

Files to create — new .mdx pages in docs/content/docs/reference/errors/ for:

  • unable_to_create_user
  • unable_to_create_session
  • account_not_linked
  • invalid_code
  • internal_server_error

File to updatedocs/content/docs/reference/errors/index.mdx — add entries for the five new pages plus the two existing but unlisted ones (state_mismatch and unknown, though unknown is intentionally excluded as a fallback page, so you may want to skip that one).

Doc page format — existing pages follow two patterns [1] [2]:

  • Complex (for OAuth/multi-step errors like unable_to_create_user): frontmatter → ## What is it?## Common Causes## How to resolve with sub-headings
  • Simple (for straightforward errors): frontmatter → one-sentence explanation → ## How to fix with a code block

All pages use the same frontmatter shape:

---
title: error_code_name
description: Short one-line description
---

Since unable_to_create_user, unable_to_create_session, and account_not_linked all originate from the OAuth flow in link-account.ts, the complex template is probably the best fit for those. internal_server_error could go either way depending on how much context you want to provide.

Good luck with the PR! 🚀

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Chat with Dosu Open in Cursor Join Discord Share on X

<!-- gh-comment-id:4166559681 --> @dosubot[bot] commented on GitHub (Apr 1, 2026): <!-- Answer --> That sounds like a great plan! Here's a quick reference to help you get started: **Files to create** — new `.mdx` pages in `docs/content/docs/reference/errors/` for: - `unable_to_create_user` - `unable_to_create_session` - `account_not_linked` - `invalid_code` - `internal_server_error` **File to update** — [`docs/content/docs/reference/errors/index.mdx`](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/index.mdx) — add entries for the five new pages plus the two existing but unlisted ones (`state_mismatch` and `unknown`, though `unknown` is [intentionally excluded](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/unknown.mdx) as a fallback page, so you may want to skip that one). **Doc page format** — existing pages follow two patterns [[1]](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/unable_to_get_user_info.mdx) [[2]](https://github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/signup_disabled.mdx): - **Complex** (for OAuth/multi-step errors like `unable_to_create_user`): frontmatter → `## What is it?` → `## Common Causes` → `## How to resolve` with sub-headings - **Simple** (for straightforward errors): frontmatter → one-sentence explanation → `## How to fix` with a code block All pages use the same frontmatter shape: ```yaml --- title: error_code_name description: Short one-line description --- ``` Since `unable_to_create_user`, `unable_to_create_session`, and `account_not_linked` all originate from the OAuth flow in `link-account.ts`, the complex template is probably the best fit for those. `internal_server_error` could go either way depending on how much context you want to provide. Good luck with the PR! 🚀 <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=brand-link).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=great_response&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=irrelevant_answer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=incorrect_sources&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=too_verbose&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=hallucination&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=bug_report&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-bug_report) | [Other](https://app.dosu.dev/response-feedback/fa2e7b39-eff8-43a2-903d-a919db0abe43?feedback_type=other&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-other)</sup> [![Chat with Dosu](https://dosu.dev/dosu-chat-badge.svg)](https://app.dosu.dev/cdda13d9-dd27-4d31-b09a-5d8bec92de21/ask?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=chat-badge)&nbsp;[![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=That%20sounds%20like%20a%20great%20plan%21%20Here%27s%20a%20quick%20reference%20to%20help%20you%20get%20started%3A%0A%0A%2A%2AFiles%20to%20create%2A%2A%20%E2%80%94%20new%20%60.mdx%60%20pages%20in%20%60docs/content/docs/reference/errors/%60%20for%3A%0A%0A-%20%60unable_to_create_user%60%0A-%20%60unable_to_create_session%60%0A-%20%60account_not_linked%60%0A-%20%60invalid_code%60%0A-%20%60internal_server_error%60%0A%0A%2A%2AFile%20to%20update%2A%2A%20%E2%80%94%20%5B%60docs/content/docs/reference/errors/index.mdx%60%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/index.mdx%29%20%E2%80%94%20add%20entries%20for%20the%20five%20new%20pages%20plus%20the%20two%20existing%20but%20unlisted%20ones%20%28%60state_mismatch%60%20and%20%60unknown%60%2C%20though%20%60unknown%60%20is%20%5Bintentionally%20excluded%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/unknown.mdx%29%20as%20a%20fallback%20page%2C%20so%20you%20may%20want%20to%20skip%20that%20one%29.%0A%0A%2A%2ADoc%20page%20format%2A%2A%20%E2%80%94%20existing%20pages%20follow%20two%20patterns%20%5B%5B1%5D%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/unable_to_get_user_info.mdx%29%20%5B%5B2%5D%5D%28https%3A//github.com/better-auth/better-auth/blob/df7f8dda9f884a486f05d6cc91dfe53b8f34e7a9/docs/content/docs/reference/errors/signup_disabled.mdx%29%3A%0A%0A-%20%2A%2AComplex%2A%2A%20%28for%20OAuth/multi-step%20errors%20like%20%60unable_to_create_user%60%29%3A%20frontmatter%20%E2%86%92%20%60%23%23%20What%20is%20it%3F%60%20%E2%86%92%20%60%23%23%20Common%20Causes%60%20%E2%86%92%20%60%23%23%20How%20to%20resolve%60%20with%20sub-headings%0A-%20%2A%2ASimple%2A%2A%20%28for%20straightforward%20errors%29%3A%20frontmatter%20%E2%86%92%20one-sentence%20explanation%20%E2%86%92%20%60%23%23%20How%20to%20fix%60%20with%20a%20code%20block%0A%0AAll%20pages%20use%20the%20same%20frontmatter%20shape%3A%0A%0A%60%60%60yaml%0A---%0Atitle%3A%20error_code_name%0Adescription%3A%20Short%20one-line%20description%0A---%0A%60%60%60%0A%0ASince%20%60unable_to_create_user%60%2C%20%60unable_to_create_session%60%2C%20and%20%60account_not_linked%60%20all%20originate%20from%20the%20OAuth%20flow%20in%20%60link-account.ts%60%2C%20the%20complex%20template%20is%20probably%20the%20best%20fit%20for%20those.%20%60internal_server_error%60%20could%20go%20either%20way%20depending%20on%20how%20much%20context%20you%20want%20to%20provide.%0A%0AGood%20luck%20with%20the%20PR%21%20%F0%9F%9A%80)&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=join-discord)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/better-auth/better-auth/issues/8868)
Author
Owner

@bytaesu commented on GitHub (Apr 1, 2026):

Hi @Bekione,

Thanks for letting us know!

Feel free to work on this issue. I'll review and refine the content 🫡

<!-- gh-comment-id:4166841030 --> @bytaesu commented on GitHub (Apr 1, 2026): Hi @Bekione, Thanks for letting us know! Feel free to work on this issue. I'll review and refine the content 🫡
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/better-auth#28542