@bobfrankston/rmfmail 1.1.84 → 1.1.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/app.js CHANGED
@@ -1436,7 +1436,7 @@ function updateFlagButton() {
1436
1436
  const sel = getCurrentFocused();
1437
1437
  const yes = !!sel && flaggedOf(sel);
1438
1438
  btn.classList.toggle("flagged", yes);
1439
- btn.textContent = yes ? "\u2605" : "\u2606";
1439
+ btn.textContent = yes ? "" : "";
1440
1440
  }
1441
1441
  document.addEventListener("mailx-message-shown", updateFlagButton);
1442
1442
  document.getElementById("btn-flag")?.addEventListener("click", async () => {