diff --git a/src/helpers/api-calls.ts b/src/helpers/api-calls.ts
index b1013c8ee801bcaa0bbffcfca1b5904669033c28..ced9c643ccca386f50a99dc83e9803e496eff08e 100644
--- a/src/helpers/api-calls.ts
+++ b/src/helpers/api-calls.ts
@@ -31,7 +31,7 @@ export const fromAPI = async (
 };
 
 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) => {
diff --git a/src/helpers/constants.ts b/src/helpers/constants.ts
index 52586bb1363beb12f2f7cba9639a9011e1bd09e3..f477560d35b19729f05ea2e991e327d5ccc244c0 100644
--- a/src/helpers/constants.ts
+++ b/src/helpers/constants.ts
@@ -10,7 +10,7 @@ export enum Label {
   DOING = 'Doing',
   IMPORTANT = 'Important',
   API = 'API',
-  POSSIBLY_IMPOSSIBLE = 'Possibly Impossible',
+  POSSIBLY_IMPOSSIBLE = 'Possibly impossible',
   EASY = 'Easy',
   GOOD_FIRST = 'Good first issue',
   SET_UP = 'Set-up',