Skip to content

Commit bef3b03

Browse files
fix(cc-article-list): update article feed URLs to clever.cloud domain
Corrects the feed URLs from `clever-cloud.com` to `clever.cloud` for both French and default language feeds.
1 parent 31ebf26 commit bef3b03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/cc-article-list/cc-article-list.smart.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ defineSmartComponent({
5151
async function fetchArticleList({ signal, lang, limit = 9 }) {
5252
const url =
5353
lang === 'fr'
54-
? 'https://www.clever-cloud.com/fr/feed/?format=excerpt'
55-
: 'https://www.clever-cloud.com/feed/?format=excerpt';
54+
? 'https://www.clever.cloud/fr/feed/?format=excerpt'
55+
: 'https://www.clever.cloud/feed/?format=excerpt';
5656

5757
const requestParams = {
5858
method: 'get',

0 commit comments

Comments
 (0)