a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[frontend] Fix build with latest SDK version

+3 -3
+3 -3
Iceshrimp.Frontend/Components/NotificationComponent.razor
··· 12 12 @inject NavigationManager NavigationManager 13 13 14 14 <div class="notification"> 15 - @if (NotificationResponse is not { Type: "mention" } or { Type: "reply" }) 15 + @if (NotificationResponse is not { Type: "mention" } and not { Type: "reply" }) 16 16 { 17 17 <div class="notification-header"> 18 18 @if (NotificationResponse is { User: not null }) ··· 108 108 109 109 @if (NotificationResponse is { Note: not null }) 110 110 { 111 - <div class="@(NotificationResponse is not { Type: "mention" } or { Type: "reply" } ? "notification-note" : "")"> 112 - <NoteComponent Note="NotificationResponse.Note" AsQuote="@(NotificationResponse is not { Type: "mention" } or { Type: "reply" })" OpenNote="true"/> 111 + <div class="@(NotificationResponse is not { Type: "mention" } and not { Type: "reply" } ? "notification-note" : "")"> 112 + <NoteComponent Note="NotificationResponse.Note" AsQuote="@(NotificationResponse is not { Type: "mention" } and not { Type: "reply" })" OpenNote="true"/> 113 113 </div> 114 114 } 115 115