Skip to content

Commit 71a9b3b

Browse files
fix
1 parent ad140b6 commit 71a9b3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/routes/integrations/+page.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { base } from '$app/paths';
22
import { groupBy } from 'remeda';
33
import type { SearchableCategory } from '$lib/constants';
4-
import { partnerCategoryDescriptions as categoryDescriptions } from '$lib/constants';
4+
import { integrationCategoryDescriptions as categoryDescriptions } from '$lib/constants';
55

66
export type Integration = {
77
title: string;
@@ -38,6 +38,7 @@ export const load = () => {
3838
const integrationName = slug.slice(slug.lastIndexOf('/') + 1);
3939

4040
frontmatter.platform.map((platform) => platforms.push(platform));
41+
console.log(categoryDescriptions.find((i) => i.slug === frontmatter.category));
4142
categories.push(
4243
categoryDescriptions.find((i) => i.slug === frontmatter.category) ??
4344
({} as SearchableCategory)

0 commit comments

Comments
 (0)