Skip to content

Commit

Permalink
fix(docs): replace {} with JSON.stringify({}) in custom send-sms edge…
Browse files Browse the repository at this point in the history
… function (supabase#33794)

fix(docs): replace {} with JSON.stringify({})
  • Loading branch information
abuwho authored Feb 24, 2025
1 parent bd56cc6 commit 7b7fd28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/content/guides/auth/auth-hooks/send-sms-hook.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ Deno.serve(async (req) => {
)
}
return new Response(
{},
JSON.stringify({}),
{
status: 200,
headers: {
Expand Down

0 comments on commit 7b7fd28

Please sign in to comment.