Skip to content
Snippets Groups Projects
Verified Commit d61321f9 authored by Ulrik Røsby's avatar Ulrik Røsby
Browse files

fix: Get all issues and spelling

parent 0d64e8d9
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ export const fromAPI = async ( ...@@ -31,7 +31,7 @@ export const fromAPI = async (
}; };
export const getIssuesFromAPI = async (): Promise<APIResponse<Issue[]>> => { export const getIssuesFromAPI = async (): Promise<APIResponse<Issue[]>> => {
return fromAPI('/issues', 'GET') as Promise<APIResponse<Issue[]>>; return fromAPI('/issues?per_page=100', 'GET') as Promise<APIResponse<Issue[]>>;
}; };
const getCommitsFromAPIRecursive = async (data: Array<Commit>, page: number) => { const getCommitsFromAPIRecursive = async (data: Array<Commit>, page: number) => {
......
...@@ -10,7 +10,7 @@ export enum Label { ...@@ -10,7 +10,7 @@ export enum Label {
DOING = 'Doing', DOING = 'Doing',
IMPORTANT = 'Important', IMPORTANT = 'Important',
API = 'API', API = 'API',
POSSIBLY_IMPOSSIBLE = 'Possibly Impossible', POSSIBLY_IMPOSSIBLE = 'Possibly impossible',
EASY = 'Easy', EASY = 'Easy',
GOOD_FIRST = 'Good first issue', GOOD_FIRST = 'Good first issue',
SET_UP = 'Set-up', SET_UP = 'Set-up',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment