From d546cc8733161f48b424f9f364d58e086e6756c1 Mon Sep 17 00:00:00 2001 From: pancakes Date: Sat, 19 Oct 2024 16:07:39 +1000 Subject: [PATCH] [frontend] Add bite note and bite user notifications --- Iceshrimp.Frontend/Components/NotificationComponent.razor | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Iceshrimp.Frontend/Components/NotificationComponent.razor b/Iceshrimp.Frontend/Components/NotificationComponent.razor index 6f14e813..481a77ae 100644 --- a/Iceshrimp.Frontend/Components/NotificationComponent.razor +++ b/Iceshrimp.Frontend/Components/NotificationComponent.razor @@ -55,6 +55,14 @@ { @Loc["quoted your post:"] } + else if (NotificationResponse is { Note: not null, Type: "bite" }) + { + @Loc["bit your note:"] + } + else if (NotificationResponse is { Type: "bite" }) + { + @Loc["bit you"] + } else {