Skip to content

Commit

Permalink
update: development
Browse files Browse the repository at this point in the history
Signed-off-by: Vinyl-Davyl <[email protected]>
  • Loading branch information
Vinyl-Davyl committed Aug 23, 2024
1 parent bd8ec68 commit e90e501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/fetchContent.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fetchContent = async (fileName: string): Promise<string> => {
const response = await fetch(`/src/content/${fileName}`);
const response = await fetch(`https://raw.githubusercontent.com/accordproject/template-playground/main/src/content/${fileName}`);
if (!response.ok) {
throw new Error(`Content not found: ${fileName}`);
}
Expand Down

0 comments on commit e90e501

Please sign in to comment.