fixed and improved context menu, removed more SCSS, added expand and improved quick access items

This commit is contained in:
subnub
2024-06-21 03:38:53 -04:00
parent b1b4469782
commit ecca46c73e
12 changed files with 392 additions and 292 deletions
+5 -1
View File
@@ -40,6 +40,10 @@ export const getFilesList = async ({
};
export const getQuickFilesList = async () => {
const response = await axios.get(`/file-service/quick-list`);
const response = await axios.get(`/file-service/quick-list`, {
params: {
limit: 12,
},
});
return response.data;
};