Recent Auth Issue Incident

Supabase incident page says email+password is not affected but a part of it that im unable to get session and user via
   const {
        data: { user },
        error: userError,
      } = await supabase.auth.getUser();
      const {
        data: { session },
        error: sessionError,
      } = await supabase.auth.getSession();


and supabase here is client side component, Is it related though from the sdk?
Was this page helpful?