Skip to content

Commit cb24e00

Browse files
committed
[B] Fix frontendProjectsAll route helper
1 parent 31904a6 commit cb24e00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/frontend/routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const routes = {
2222
isLibrary: true,
2323
helper: (params = {}) => {
2424
const query = queryString.stringify(params);
25-
if (!query) return "/projects/all";
26-
return `/projects/all?${query}`;
25+
if (!query) return "/projects";
26+
return `/projects?${query}`;
2727
}
2828
},
2929
{

0 commit comments

Comments
 (0)