We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb5707 commit dfcd696Copy full SHA for dfcd696
apps/website/app/routes/_index.tsx
@@ -58,8 +58,8 @@ async function fetchSponsorData(name: string) {
58
}
59
const stringifiedQuery = stringify({ where: query }, { addQueryPrefix: true })
60
61
- /* const response = await fetch(`https://axiom.cuhacking.ca/api/brands${stringifiedQuery}`) */
62
- const response = await fetch(`http://localhost:8000/api/brands${stringifiedQuery}`)
+ const response = await fetch(`https://axiom.cuhacking.ca/api/brands${stringifiedQuery}`)
+ /* const response = await fetch(`http://localhost:8000/api/brands${stringifiedQuery}`) */
63
64
if (!response.ok) {
65
throw new Error(`Failed to fetch sponsor data: ${response.status} ${response.statusText}`)
0 commit comments