I'm experiencing authentication issues with edge functions in my ECC-enabled project and need assistance. Project Details: - Project Ref: nvijazvohdshgevctngd - JWT Signing: ECC (P-256) / ES256 - Issue: All edge function calls return {"code":401,"message":"Invalid JWT"} Problem Description: When calling edge functions from my React Native app using the Supabase JS SDK, the API gateway returns a 401 "Invalid JWT" error. User authentication works fine for all other Supabase operations (database queries, auth.signIn, etc.), but edge functions specifically fail. What I've tried: - Updated Supabase JS SDK to latest version (both client and edge functions) - Verified anon key and project URL are correct - Tested with fresh user login (new tokens) - Used multiple authentication approaches (supabase.functions.invoke, direct fetch) - Confirmed edge functions work when called without authentication Technical Details: - User tokens are ES256 signed (verified from JWT header) - Anon key is HS256 (legacy key type) - Edge function calls fail at the gateway level before reaching function code - No logs appear in edge function logs (request never reaches the function) Request: Could you please help me resolve this? I suspect the issue is related to ECC token validation for edge functions. If needed, I'm willing to migrate back to HS256 if that's possible for my project. Thank you for your help!