Increase diff response limit

This commit is contained in:
Vishnu Mohandas 2020-11-20 16:52:13 +05:30
parent 8f1d37b071
commit 90b41c67a5

View file

@ -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);
};