We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad7ee1 commit c8bbb97Copy full SHA for c8bbb97
1 file changed
src/routes/(console)/organization-[organization]/+page.ts
@@ -19,7 +19,8 @@ export const load: PageLoad = async ({ params, url, route, depends, parent }) =>
19
const search = getSearch(url);
20
21
const archivedPageRaw = parseInt(url.searchParams.get('archivedPage') || '1', 10);
22
- const archivedPage = Number.isFinite(archivedPageRaw) && archivedPageRaw > 0 ? archivedPageRaw : 1;
+ const archivedPage =
23
+ Number.isFinite(archivedPageRaw) && archivedPageRaw > 0 ? archivedPageRaw : 1;
24
const archivedOffset = pageToOffset(archivedPage, limit);
25
const [activeProjects, archivedProjects, activeTotal, archivedTotal] = await Promise.all([
26
sdk.forConsole.projects.list({
0 commit comments