{messageNo API key found in request,hintNo `apikey` request header or url param was found.

Hello I am having trouble with a a select. My selects work well elsewhere throughout the code but
  async function updateBurnLevel() {
    const { data, error } = await supabaseClient
      .from('users_vocabulary')
      .select('burn_level')
      .eq('A', wordIDs[Math.floor(sliver / 2)])
      .eq('B', session.user.id);
    console.log(data);
    if (data) { ~blah blah

is giving me the above error. Is there a problem with chaining .eq like this?
Was this page helpful?