Skip to content

Commit

Permalink
fix skills is not rich text
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-hackin committed Feb 9, 2023
1 parent bcd6592 commit 80adc30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cms-integration/prismic/skills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export const prismicGetSkillCategories = async (): Promise<
return document.results.map((document) => ({
attributes: { title: document.data.level_name },
slug: document.id,
html: renderToStaticMarkup(document.data.skills_list),
html: document.data.skills_list,
}));
};

0 comments on commit 80adc30

Please sign in to comment.