Skip to content

Commit

Permalink
fix conf index fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
cak committed Apr 8, 2024
1 parent 5725426 commit 37d0756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Home() {
data: htData,
error: htError,
isLoading: htIsLoading,
} = useSWR<HTConference[], Error>("../ht/index.json", fetcher);
} = useSWR<HTConference[], Error>("/ht/index.json", fetcher);

if (htIsLoading) {
return <Loading />;
Expand Down

0 comments on commit 37d0756

Please sign in to comment.