fix for marked package update
Some checks are pending
Deploy to IPFS / build (push) Waiting to run
Deploy to IPFS / deploy-rsync (push) Blocked by required conditions
Deploy to IPFS / deploy-ipfs (push) Blocked by required conditions
Deploy to IPFS / deploy-pinata (push) Blocked by required conditions
Lint & Format / lint (push) Waiting to run
Tests / unit (push) Waiting to run

This commit is contained in:
hueso
2026-06-08 18:23:27 -03:00
parent cea50bb22c
commit 8d6dc80f55

View File

@@ -22,8 +22,8 @@ const openItem = (index: number) => {
});
faq.value[selectedSection.value].items[index].content = marked(
faq.value[selectedSection.value].items[index].content,
);
faq.value[selectedSection.value].items[index].content
) as string;
};
</script>