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
f6ed926a 107b8ad5

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