summaryrefslogtreecommitdiff
path: root/gui/src/types/notifications.ts
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-11-19 05:47:30 +0700
committerpolwex <polwex@sortug.com>2025-11-19 05:47:30 +0700
commit74d84cb2f22600b6246343e9ea606cf0db7517f0 (patch)
tree0d68285c8e74e6543645e17ab2751d543c1ff9a6 /gui/src/types/notifications.ts
parente6e657be3a3b1dae426b46f3bc16f9a5cf4861c2 (diff)
Big GUI improvements on Nostr rendering and fetchingpolwex/iris
Diffstat (limited to 'gui/src/types/notifications.ts')
-rw-r--r--gui/src/types/notifications.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/gui/src/types/notifications.ts b/gui/src/types/notifications.ts
index 760702a..4d0bd3f 100644
--- a/gui/src/types/notifications.ts
+++ b/gui/src/types/notifications.ts
@@ -1,6 +1,6 @@
import type { Ship } from "./urbit";
-export type NotificationType =
+export type NotificationType =
| "follow"
| "unfollow"
| "mention"
@@ -8,7 +8,9 @@ export type NotificationType =
| "repost"
| "react"
| "access_request"
- | "access_granted";
+ | "access_granted"
+ | "fetching_nostr"
+ | "nostr_fetch_success";
export interface Notification {
id: string;
@@ -25,4 +27,4 @@ export interface Notification {
export interface NotificationState {
notifications: Notification[];
unreadCount: number;
-} \ No newline at end of file
+}