diff --git a/app.vue b/app.vue index b049977..6d6f594 100644 --- a/app.vue +++ b/app.vue @@ -11,6 +11,8 @@ + + @@ -21,6 +23,7 @@ import { convert } from "html-to-text"; import "iconify-icon"; import ConfirmationModal from "./components/modals/confirmation.vue"; import NotificationsRenderer from "./components/notifications/notifications-renderer.vue"; +import { Toaster } from "./components/ui/sonner"; import { SettingIds } from "./settings"; // Use SSR-safe IDs for Headless UI provideHeadlessUseId(() => useId()); diff --git a/bun.lockb b/bun.lockb index f40ae19..8870bee 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/components/notes/actions.vue b/components/notes/actions.vue index 36a58e7..d719f74 100644 --- a/components/notes/actions.vue +++ b/components/notes/actions.vue @@ -15,7 +15,7 @@ - + @@ -32,6 +32,11 @@ defineProps<{ replyCount: number; likeCount: number; reblogCount: number; + apiNoteString: string; + isRemote: boolean; + url: string; + remoteUrl: string; + authorId: string; }>(); const numberFormat = (number = 0) => diff --git a/components/notes/copyable-text.vue b/components/notes/copyable-text.vue index cc980e3..4c59957 100644 --- a/components/notes/copyable-text.vue +++ b/components/notes/copyable-text.vue @@ -4,36 +4,31 @@ - \ No newline at end of file diff --git a/components/notes/header.vue b/components/notes/header.vue index 21cc2b0..2359c9c 100644 --- a/components/notes/header.vue +++ b/components/notes/header.vue @@ -1,6 +1,6 @@