소스 검색

Increase diff response limit

Vishnu Mohandas 4 년 전
부모
커밋
90b41c67a5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/pages/gallery/index.tsx

+ 1 - 1
src/pages/gallery/index.tsx

@@ -41,7 +41,7 @@ export default function Gallery() {
         const main = async () => {
             setLoading(true);
             const encryptionKey = await getActualKey();
-            const resp = await getFiles("0", token, "24", encryptionKey);
+            const resp = await getFiles("0", token, "100", encryptionKey);
             setLoading(false);
             setData(resp);
         };