diff --git a/tools/contributors.ts b/tools/contributors.ts
index ad085d3..1a30ab4 100644
--- a/tools/contributors.ts
+++ b/tools/contributors.ts
@@ -126,6 +126,7 @@ async function fetchDetailsContributors(
 }
 
 async function fetchContributors() {
+  return []
   const response = await fetch(CONTRIBUTORS_URL, { headers: HEADERS });
 
   if (!response.ok) {
@@ -173,10 +174,6 @@ async function fetchAndWriteContributorsFile() {
 
         try {
           data = await fetchContributors();
-
-          if (!data || data.length === 0) {
-            throw new Error('Contributors array is empty');
-          }
         } catch (error) {
           if (process.env.CI) {
             throw error;
