Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 8ef5648

Browse files
committed
fix(web): incorrect fetch url
1 parent 6f540c7 commit 8ef5648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/website/ui/sponsorship/constants/sponsorship.constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function fetchSponsorData(name: string) {
2121
const query = { name: { equals: name } }
2222
const stringifiedQuery = stringify({ where: query }, { addQueryPrefix: true })
2323

24-
const response = await fetch(`http://localhost:8000/api/brands${stringifiedQuery}`)
24+
const response = await fetch(`https://axiom.cuhacking.ca/api/brands${stringifiedQuery}`)
2525
const data = await response.json()
2626

2727
return {

0 commit comments

Comments
 (0)