From 6eb5320d6950077aa198fce1cff07f56a53ed43a Mon Sep 17 00:00:00 2001 From: Zach Childers <526430+zachChilders@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:14:11 -0700 Subject: [PATCH] Update index.ts --- src/password-store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/password-store/index.ts b/src/password-store/index.ts index 5b9120e..2a5f02b 100644 --- a/src/password-store/index.ts +++ b/src/password-store/index.ts @@ -33,7 +33,7 @@ export class PasswordStore { await this.db .insertInto("passwords") .values({ - auth0_id: exportedPassword._id.$oid, + auth0_id: `auth0|${exportedPassword._id.$oid}`, password_hash: exportedPassword.passwordHash, }) .onConflict((oc) => oc.doNothing())