Merge pull request #9421 from haydn/patch-1

Removed invalid colon from `Bearer: <token>`
This commit is contained in:
dng
2022-10-10 09:53:47 -07:00
committed by GitHub

View File

@@ -248,7 +248,7 @@ import { createClient, useQuery } from 'urql'
// Prepare API key and Authorization header
const headers = {
apikey: <SUPABASE_ANON_KEY>,
authorization: `Bearer: ${<SUPABASE_ANON_KEY}`>
authorization: `Bearer ${<SUPABASE_ANON_KEY}`>
}
// Create GraphQL client