One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove atproto api post in sso callback

authored by

Evan Huang and committed by
GitHub
ea5a79fd f6ed926a

-5
-5
app/(auth)/sign-up/sso-callback/page.tsx
··· 1 1 'use client'; 2 2 3 3 import { AuthenticateWithRedirectCallback } from '@clerk/nextjs'; 4 - import { useEffect } from 'react'; 5 4 6 5 export default function SSOSignUpCallback() { 7 - useEffect(() => { 8 - fetch('/api/atproto/logout', { method: 'POST' }).catch(() => undefined); 9 - }, []); 10 - 11 6 return <AuthenticateWithRedirectCallback />; 12 7 }