yasserconnect
Explore posts from serversBABetter Auth
•Created by yasserconnect on 3/20/2025 in #bug-reports
Network error!
Sometimes, my users report encountering a sudden "Network error." The issue occurs unexpectedly, but when they sign in from another device, it works fine, and the error resolves on its own after some time.
What could be the root cause of this issue, and how can I effectively fix it?
CC @bekacru
2 replies
BABetter Auth
•Created by yasserconnect on 3/6/2025 in #help
Admin plugin authorization
auth.ts
schema:
after upgrade to latest version، Admin plugin not works!
how can edit admin in auth.ts config so can admin access the admin panel?
4 replies
BABetter Auth
•Created by yasserconnect on 3/4/2025 in #bug-reports
Admin plugin
after upgrade to latest Admin plugin not works, any one same problem or my config?
7 replies
BABetter Auth
•Created by yasserconnect on 1/25/2025 in #help
error when want to create a passkey
error: "Failed to verify registration"
how to fx it?
1 replies
BABetter Auth
•Created by yasserconnect on 12/23/2024 in #help
change password as support
how can admin can change a user password as support if not no the currentPassword?
1 replies
BABetter Auth
•Created by yasserconnect on 12/21/2024 in #help
session' does not exist in twoFactor
Type error: Property 'session' does not exist on type '{ token: string; }'.
4 replies
BABetter Auth
•Created by yasserconnect on 12/13/2024 in #bug-reports
warning! better-auth with Turbopack enabled
how to fix that?
2 replies
BABetter Auth
•Created by yasserconnect on 12/12/2024 in #help
fix TypeError baseURL
when i try to refresh (dashboard/profile) page i get this error
[TypeError: Invalid URL /get-session. Are you passing in a relative URL but not setting the baseURL?]
[TypeError: Invalid URL /passkey/list-user-passkeys. Are you passing in a relative URL but not setting the baseURL?]
how to fix it?
3 replies
DTDrizzle Team
•Created by yasserconnect on 8/1/2024 in #help
[BUG]: orderBy causes relational query to fail
const shipmentQuery = await db.query.shipment.findMany({
with: {
products: true,
},
// [BUG]: orderBy causes relational query to fail
// orderBy: desc(shipment.createdAt),
});
same issue here:
https://github.com/drizzle-team/drizzle-orm/issues/1249
i cannot use orderBy
any fix?
17 replies
DTDrizzle Team
•Created by yasserconnect on 7/5/2024 in #help
use limit or undefined
const limit = searchParams?.get('limit');
const shipmentsQuery = db
.select()
.from(shipment)
.orderBy(desc(shipment.createdAt))
.limit(limit? limit : undefined);
i want to use limit when is has value if not then use without a limit?
12 replies