supabase Questions

7

Happy Monday! I've recently run into a weird issue and can't seem to figure out what would be causing it. I have a NextJS project using Prisma and Supabase. When I run the app on my Windows desktop...
Intercalary asked 13/2, 2024 at 18:4

6

I am trying to use Prisma with a local instance of Supabase running on docker. I created a very basic model inside prisma/schema.prisma file: // This is your Prisma schema file, // learn more about...
Omegaomelet asked 21/1, 2023 at 18:59

7

Solved

The following function fails with error "Auth Session Missing" const { error } = await supabase.auth.updateUser({ password: password, }); After getting the reset password link on my mai...
Borst asked 20/7, 2023 at 19:46

0

I developed an AI chatbot application using Vercel's AI SDK. I'm encountering issues with onSetAIState when saving data to Supabase. In this function, I perform two operations: saving messages to ...
Milkfish asked 17/8, 2024 at 19:44

3

I am making a to-do list application with Supabase and NextJS-13 and while fetching the lists from Supabase, the server gave me this error Error Image My List table on Supabase has three columns: ...
Colophony asked 7/6, 2023 at 15:30

2

I am trying to integrate Supabase Google Auth into my Hybrid app built with Capacitor. It is working fine for web, but I am not able to get it working for iOS. There isn't any documentation around ...
Elle asked 8/3, 2023 at 10:23

2

I'm trying to create a github workflow for my repo that is using supabase edge functions. The error I'm receiving is: Node.js 16 actions are deprecated. Please update the following actions to use N...
Inadequate asked 14/2, 2024 at 5:20

3

Solved

Based on the docs, inserting a new record const { error } = await supabase .from('countries') .insert({ name: 'Denmark' }) returns { "status": 201, "statusText": "Crea...
Stinky asked 2/1, 2023 at 11:31

3

npm i drizzle-orm postgres npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: [email protected] npm ERR! Found: [email protected] npm ERR! node_...
Alfrediaalfredo asked 1/5, 2024 at 6:40

1

I'm trying to implement Supabase Auth in a Next JS project Now I'm encounter the following error which keeps repeating when I npm run dev: [AuthApiError: Invalid Refresh Token: Already Used]{ __is...
Medlock asked 13/10, 2023 at 10:16

6

Solved

I'm creating a project with nextjs and supabase. For an unknown reason, I'm getting the following warning in the console: Multiple GoTrueClient instances detected in the same browser context. It i...
Gayn asked 26/7, 2023 at 17:41

1

I'm using a React Native project with Expo v49, and I added a Supabase call to read some data from the database, and it works on ios/android, But when I open the web version, I get "ReferenceE...
Readjustment asked 3/10, 2023 at 22:36

2

All auth functions work except signInWithPassword using React, TypeScript, and Supabase. My context: It allows me to signIn, create a profile and move on. I am able to getUser() during the session ...
Greengage asked 20/11, 2022 at 23:45

3

Solved

I am trying to use layout.tsx in the app directory of Next.js 13 to have a nav layout that is present on all the pages. I managed to make it so that when the user logs out/signs in, the navbar chan...
Averell asked 23/8, 2023 at 0:31

8

Whenever I've try to use @supabase/supabase-js to query the db, I get an error. error: { hint: null, details: null, code: '42501', message: 'permission denied for schema public' } I think it h...
Masticatory asked 15/5, 2021 at 22:3

7

I am trying to run the command to update my typing via cli and it continues to give me the following error but when I debug this is all I get. Not much to work with. 2023/03/01 09:34:01 Recv First ...
Dilapidate asked 1/3, 2023 at 14:38

3

Solved

I am having an issue with uploading avatars to my supabase bucket as its giving me "new row violates row-level security policy for table "objects"". I tried other StackOverflow ...
Rascally asked 3/11, 2022 at 11:28

1

I'm using deno db to connect to a supabase postgres server. Here's the error from deno deploy. TLS connection failed with message: invalid peer certificate contents: invalid peer certificate: Unsu...
Tall asked 26/8, 2022 at 6:2

2

In a Supabase app, I want to invite users (instead of them signing themselves up). I can invite a user with their email, but they get sent a link which directly authenticates them (like a magic lin...
Heliacal asked 15/9, 2021 at 21:21

0

I am trying to make a request to nextjs route handler where I am using supabase database to retreive some rows from a particular database table. The table exist and it is already filled with rows. ...
Rottenstone asked 7/11, 2023 at 9:49

1

Solved

I’m working on an Android project with Kotlin and using Dagger Hilt for dependency injection. Recently, I’ve attempted to migrate from kapt to KSP (Kotlin Symbol Processing) for code generation, as...
Absentee asked 5/11, 2023 at 2:56

2

Solved

I have been trying to fix this problem, I could not search any documentation for this specific problem. I have everyhing setup, the project is linked, the docker is running, I just can not figure o...
Lambda asked 26/2, 2023 at 13:36

4

Solved

I want to retrieve row count in Supabase. I am guessing it would be something like this: const { data, error } = await supabase .from('cities') .select('name', 'COUNT(*)') Is this possible with ...
Peculiarize asked 7/1, 2021 at 12:11

4

Solved

I'm trying to use Supabase for inserting/collecting data from my form. But when I compile I got encoding module is not found error. I already tried cache cleaning and re-installing npm modules. The...
Garmaise asked 13/2, 2023 at 15:36

2

I am currently working on a Chrome extension that relies on a web application for user login. The web application leverages Supabase and the Google provider for user authentication. I have successf...
Rectum asked 28/6, 2023 at 11:31

© 2022 - 2025 — McMap. All rights reserved.