Fix typo sanitizeItems to sanitize_items

This commit is contained in:
Nariman Jelveh
2024-06-02 10:23:41 -07:00
parent 6efff83616
commit cf8a07286a
+1 -1
View File
@@ -384,7 +384,7 @@ window.addEventListener('message', async (event) => {
return {
html: item.label,
action: item.action,
items: item.items ? sanitizeItems(item.items) : undefined
items: item.items ? sanitize_items(item.items) : undefined
};
});
};