Skip to content

Commit 28e5033

Browse files
committed
Missing ! on images
1 parent 54ceee3 commit 28e5033

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/guides/frameworks/supabase-edge-functions-database-webhooks.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ Follow the CLI instructions and once complete you should see your new edge funct
169169

170170
Next, in your Supabase dashboard, click on 'Table Editor' in the left-hand menu and create a new table. In this example we will call our table `skynet`.
171171

172-
[How to create a new table](/images/supabase-new-table-1.png)
172+
![How to create a new table](/images/supabase-new-table-1.png)
173173

174174
Add a new column called `name` with the type `text`.
175175

176-
[How to add a new column](/images/supabase-new-table-2.png)
176+
![How to add a new column](/images/supabase-new-table-2.png)
177177

178178
</Step>
179179

@@ -183,11 +183,11 @@ By default, Supabase edge functions require a JSON Web Token (JWT) in the author
183183

184184
In your Supabase dashboard, click 'Project settings', then the 'API' tab, and copy the `anon` `public` API key from the table.
185185

186-
[How to find your Supabase API keys](/images/supabase-api-key.png)
186+
![How to find your Supabase API keys](/images/supabase-api-key.png)
187187

188188
Then, go to 'Database' click on 'Webhooks', and then click 'Create a new hook'.
189189

190-
[How to create a new webhook](/images/supabase-create-webhook-1.png)
190+
![How to create a new webhook](/images/supabase-create-webhook-1.png)
191191

192192
Call the hook `edge-function-hook`:
193193

@@ -198,8 +198,8 @@ Call the hook `edge-function-hook`:
198198
5. Under 'Headers', add a new header with the key `Authorization` and the value `Bearer <your-api-key>` (replace `<your-api-key>` with the `anon` `public` API key you copied earlier).
199199
6. Click 'Create webhook'.
200200

201-
[How to create a new webhook 2](/images/supabase-create-webhook-2.png)
202-
[How to create a new webhook 3](/images/supabase-create-webhook-3.png)
201+
![How to create a new webhook 2](/images/supabase-create-webhook-2.png)
202+
![How to create a new webhook 3](/images/supabase-create-webhook-3.png)
203203

204204
</Step>
205205

@@ -235,15 +235,15 @@ yarn dlx trigger.dev@beta deploy
235235

236236
Back in your Supabase dashboard, click on 'Table Editor' in the left-hand menu, and then click on the `skynet` table.
237237

238-
[How to insert a new row 1](/images/supabase-new-table-3.png)
238+
![How to insert a new row 1](/images/supabase-new-table-3.png)
239239

240240
Click 'insert', and add a new item under `name`, with the value `Sarah Connor`.
241241

242-
[How to insert a new row 2](/images/supabase-new-table-4.png)
242+
![How to insert a new row 2](/images/supabase-new-table-4.png)
243243

244244
Go back to your edge function dashboard, and you should see a new run of your `database-webhook` edge function, under 'Logs'.
245245

246-
[How to view the logs](/images/supabase-logs.png)
246+
![How to view the logs](/images/supabase-logs.png)
247247

248248
Check your [cloud.trigger.dev](http://cloud.trigger.dev) dashboard and you should see a succesful `hello-world` task.
249249

0 commit comments

Comments
 (0)