diff options
| author | Dhravya <[email protected]> | 2024-07-01 07:55:16 -0500 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-07-01 07:55:16 -0500 |
| commit | b00dbd46476636fea1f48bf5164136e3bf217349 (patch) | |
| tree | 2403fd1c546dd6fc0b94e5d72f6fb313e855a7f7 /apps/web/app/api | |
| parent | merge conflicts (diff) | |
| download | supermemory-dev.tar.xz supermemory-dev.zip | |
minor changes in extensiondev
Diffstat (limited to 'apps/web/app/api')
| -rw-r--r-- | apps/web/app/api/telegram/route.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/api/telegram/route.ts b/apps/web/app/api/telegram/route.ts index c6c673b2..5f824b79 100644 --- a/apps/web/app/api/telegram/route.ts +++ b/apps/web/app/api/telegram/route.ts @@ -21,7 +21,7 @@ bot.command("start", async (ctx) => { const cipherd = cipher(user.id.toString()); await ctx.reply( - `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your account: https://beta.supermemory.ai/signin?telegramUser=${cipherd}`, + `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your account: https://supermemory.ai/signin?telegramUser=${cipherd}`, ); }); @@ -38,7 +38,7 @@ bot.on("message", async (ctx) => { if (!dbUser) { await ctx.reply( - `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your account: https://beta.supermemory.ai/signin?telegramUser=${cipherd}`, + `Welcome to Supermemory bot. I am here to help you remember things better. Click here to create and link your account: https://supermemory.ai/signin?telegramUser=${cipherd}`, ); return; |