Skip to content

Commit 2c49d2f

Browse files
committed
rm debug cache breaker
1 parent 3109fb0 commit 2c49d2f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/features/githubCard/api/getRepos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Repository } from 'src/types'
44
import { axios } from 'src/lib/axios'
55

66
const getRepos = async (tag: string, dateRange: string): Promise<Repository[]> => {
7-
return axios.get(`/data/v2/github/${tag}/${dateRange}.json?s`)
7+
return axios.get(`/data/v2/github/${tag}/${dateRange}.json`)
88
}
99

1010
type QueryFnType = typeof getRepos

src/features/lobstersCard/api/getArticles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Article } from 'src/types'
44
import { axios } from 'src/lib/axios'
55

66
const getArticles = async (): Promise<Article[]> => {
7-
return axios.get('/data/v2/lobsters.json?a')
7+
return axios.get('/data/v2/lobsters.json')
88
}
99

1010
type QueryFnType = typeof getArticles

0 commit comments

Comments
 (0)