docs: fix typo

This commit is contained in:
Bereket Engida
2024-10-27 09:01:27 +03:00
parent 92347c1793
commit a3d69b3e44
2 changed files with 2 additions and 3 deletions

View File

@@ -137,8 +137,7 @@ If account linking is disabled, no accounts can be linked, regardless of the pro
const auth = new BetterAuth({ const auth = new BetterAuth({
account: { account: {
accountLinking: { accountLinking: {
enabled: true, enabled: true,
trustedProviders: ["google", "github"]
} }
}, },
}); });

View File

@@ -13,7 +13,7 @@
"lint": "biome check .", "lint": "biome check .",
"lint:fix": "biome check . --apply", "lint:fix": "biome check . --apply",
"release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks", "release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks",
"release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks --tag next", "release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks",
"release:beta": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag next --no-git-checks", "release:beta": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag next --no-git-checks",
"test": "turbo --filter \"./packages/*\" test", "test": "turbo --filter \"./packages/*\" test",
"typecheck": "turbo --filter \"./packages/*\" typecheck" "typecheck": "turbo --filter \"./packages/*\" typecheck"