Hello FF Community,
I'd like your help with something that seems simple but that I've been struggling with for a few days on my FlutterFlow application.
I'm working with Supabase as my backend.
I keep getting the same error in the logs (Error 401) : {"message": "No API key found in request", "hint": "No apikey
request header or url param was found."}
In principle, it's quite simple: on my application, I have a button that, when clicked, automatically updates a score via a trigger in supabase. For the action linked to this button (screenshots), I perform a callback on the icon button in the component for an action I define on a main page. On this main page, the action when the button is clicked executes a backend call that inserts a row in my c_habit_clicks supabase table with habit_id, user_id, points, losses (0 by default) from another table called "a_habits" with these same variables.
The problem I'm having is that when I test the app, the row that should be created isn't in the c_habit_clicks supabase table, and the error displayed with F12 is the one mentioned at the beginning (error 401).