Skip to content

Commit

Permalink
Merge pull request #326 from supabase/bo/fix/img-link
Browse files Browse the repository at this point in the history
fix: doc images broken links
  • Loading branch information
kiwicopple authored Aug 8, 2024
2 parents 4076e0b + c6762ae commit fc42ddc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/guides/create-wasm-wrapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ git push origin v0.2.0

This will trigger a GitHub workflow to build the package and create a release on your repo. It may take a few minutes:

![GitHub Build](/wrappers/assets/wasm-build.png)
![GitHub Build](../assets/wasm-build.png)

After the GitHub action has completed, expand the `Create README.txt` step, which will have your installation instructions at the bottom - something like:

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/query-pushdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Query pushdown is a technique that enhances query performance by executing parts

Query pushdown is a technique that enhances query performance by executing parts of the query directly on the data source. It reduces data transfer between the database and the application, enabling faster execution and improved performance.

![assets/query-pushdown-dark.png](/wrappers/assets/query-pushdown-dark.png)
![assets/query-pushdown-dark.png](../assets/query-pushdown-dark.png)

### Using Query Pushdown

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/wasm-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In this example, we're going to create a Wrapper that can query a Google Sheet.

You should have your own Google Sheet:

![Google Sheet](/wrappers/assets/google-sheet.png)
![Google Sheet](../assets/google-sheet.png)

## Rename your Wrapper

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ returns

Postgres FDWs introduce the concept of a "remote server" and "foreign table":

![FDW](/wrappers/assets/fdw-light.png)
![FDW](assets/fdw-light.png)

### Remote servers

Expand Down

0 comments on commit fc42ddc

Please sign in to comment.