Search
Star
Feedback
Setup for Free
© 2026 Hedgehog Software, LLC
Twitter
GitHub
Discord
System
Light
Dark
More
Communities
Docs
About
Terms
Privacy
Supabase NextJs Framework Quickstarts Docs Not working (NextJs 16.1) - Supabase
S
Supabase
•
3w ago
•
12 replies
MitSu
Supabase NextJs Framework Quickstarts Docs Not working (NextJs 16.1)
Solved
🟡
javascript
Hi guys
, I
'm learning how to connect Supabase with NextJs 16
, and followed the quickstart guide on the supabase website
.
However
, after following the instructions I am returning an empty array on the output
. link
:
http://localhost:3000/instruments
Here is my
/instruments
/page
.tsx code
:
-
-
-
-
-
-
-
import
{ createClient
} from
"
@
/lib
/supabase
/server
"
;
import
{ Suspense
} from
"react
"
;
async function InstrumentsData
(
)
{
const supabase
= await createClient
(
)
;
const
{ data
: instruments
}
= await supabase
.from
(
"instruments
"
)
.select
(
)
;
return
<pre
>
{JSON
.stringify
(instruments
, null
, 2
)
}
<
/pre
>
;
}
export default function Instruments
(
)
{
return
(
<Suspense fallback
=
{
<div
>Loading instruments
.
.
.
<
/div
>
}
>
<InstrumentsData
/
>
<
/Suspense
>
)
;
}
-
-
-
-
-
-
-
-
-
The
"instruments
" table exists
,
"the fallback
"
:oading instruments
.
.
.
" works
, but returns empty array
.
What could be the issue here
?
Thanks much in advance
.
Mitsu
Supabase
Join
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816
Members
View on Discord
Resources
ModelContextProtocol
ModelContextProtocol
MCP Server
Similar Threads
Was this page helpful?
Yes
No
Recent Announcements
Similar Threads
Nextjs Supabase Error
S
Supabase / help-and-questions
3y ago
Supabase Middleware not working
S
Supabase / help-and-questions
6mo ago
Supabase oauth not working
S
Supabase / help-and-questions
7mo ago
supabase grafana not working
S
Supabase / help-and-questions
3y ago