We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c528af4 + 3121358 commit 0d88649Copy full SHA for 0d88649
2 files changed
src/features/githubCard/api/getRepos.ts
@@ -4,7 +4,7 @@ import { Repository } from 'src/types'
4
import { axios } from 'src/lib/axios'
5
6
const getRepos = async (tag: string, dateRange: string): Promise<Repository[]> => {
7
- return axios.get(`/data/v2/github/${tag}/${dateRange}.json?s`)
+ return axios.get(`/data/v2/github/${tag}/${dateRange}.json`)
8
}
9
10
type QueryFnType = typeof getRepos
src/features/lobstersCard/api/getArticles.ts
@@ -4,7 +4,7 @@ import { Article } from 'src/types'
const getArticles = async (): Promise<Article[]> => {
- return axios.get('/data/v2/lobsters.json?a')
+ return axios.get('/data/v2/lobsters.json')
type QueryFnType = typeof getArticles
0 commit comments