File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
import { base } from '$app/paths' ;
2
2
import { groupBy } from 'remeda' ;
3
3
import type { SearchableCategory } from '$lib/constants' ;
4
- import { partnerCategoryDescriptions as categoryDescriptions } from '$lib/constants' ;
4
+ import { integrationCategoryDescriptions as categoryDescriptions } from '$lib/constants' ;
5
5
6
6
export type Integration = {
7
7
title : string ;
@@ -38,6 +38,7 @@ export const load = () => {
38
38
const integrationName = slug . slice ( slug . lastIndexOf ( '/' ) + 1 ) ;
39
39
40
40
frontmatter . platform . map ( ( platform ) => platforms . push ( platform ) ) ;
41
+ console . log ( categoryDescriptions . find ( ( i ) => i . slug === frontmatter . category ) ) ;
41
42
categories . push (
42
43
categoryDescriptions . find ( ( i ) => i . slug === frontmatter . category ) ??
43
44
( { } as SearchableCategory )
You can’t perform that action at this time.
0 commit comments