Skip to content

Commit 05d51bd

Browse files
committed
fix serviceUrl
1 parent 2ca6486 commit 05d51bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/app/src/hooks/use-rss-feed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface RssFeedData {
1010
}
1111

1212
async function fetchRssFeed(serviceUrl: string): Promise<RssFeedData> {
13-
const response = await fetch(`${serviceUrl}/rss.xml`);
13+
const response = await fetch(serviceUrl);
1414

1515
if (!response.ok) {
1616
throw new Error(`Failed to fetch RSS feed: ${response.status}`);

0 commit comments

Comments
 (0)