fix emoji updating

This commit is contained in:
Chris Wanstrath 2026-02-09 19:48:12 -08:00
parent 823cbb2317
commit d4e8975200

View File

@ -249,6 +249,12 @@ export function updateAppIcon(dir: string, icon: string) {
pkg.toes ??= {}
pkg.toes.icon = icon
saveApp(dir, pkg)
const app = _apps.get(dir)
if (app) {
app.icon = icon
update()
}
}
const clearTimers = (app: App) => {