diff --git a/app/src/protyle/wysiwyg/callout.ts b/app/src/protyle/wysiwyg/callout.ts index b34c7e37f..c290821aa 100644 --- a/app/src/protyle/wysiwyg/callout.ts +++ b/app/src/protyle/wysiwyg/callout.ts @@ -112,7 +112,7 @@ export const updateCalloutType = (titleElement: HTMLElement, protyle: IProtyle) } else if (textElements[0].value === "TIP") { emojiHTML = "💡"; } else if (textElements[0].value === "IMPORTANT") { - emojiHTML = "️❗"; + emojiHTML = "❗"; } else if (textElements[0].value === "WARNING") { emojiHTML = "⚠️"; } else if (textElements[0].value === "CAUTION") { diff --git a/app/src/protyle/wysiwyg/index.ts b/app/src/protyle/wysiwyg/index.ts index d1f742bae..0c0099a76 100644 --- a/app/src/protyle/wysiwyg/index.ts +++ b/app/src/protyle/wysiwyg/index.ts @@ -3080,7 +3080,7 @@ export class WYSIWYG { } else if (subType === "TIP") { emojiHTML = "💡"; } else if (subType === "IMPORTANT") { - emojiHTML = "️❗"; + emojiHTML = "❗"; } else if (subType === "WARNING") { emojiHTML = "⚠️"; } else if (subType === "CAUTION") {