feat: Add error page when an account is not found

This commit is contained in:
Jesse Wierzbinski 2024-06-11 18:41:27 -10:00
parent 46193938fe
commit 3db36ae618
No known key found for this signature in database
4 changed files with 92 additions and 8 deletions

View file

@ -31,6 +31,11 @@ type ApplicationEvents = {
"notification:new": NotificationEvent;
"attachment:view": Attachment;
"identity:change": Identity;
error: {
code: string;
title: string;
message: string;
} | null;
};
const emitter = mitt<ApplicationEvents>();