From fd1759ff64154f8cb1567f28e49e9d673fe6707b Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 9 Dec 2025 23:28:26 +0100 Subject: [PATCH] refactor: :fire: Remove useless scrolling end reached message --- app/components/errors/ReachedEnd.vue | 13 ------------- app/components/timelines/timeline.vue | 4 ---- 2 files changed, 17 deletions(-) delete mode 100644 app/components/errors/ReachedEnd.vue diff --git a/app/components/errors/ReachedEnd.vue b/app/components/errors/ReachedEnd.vue deleted file mode 100644 index 0d8e39a..0000000 --- a/app/components/errors/ReachedEnd.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/app/components/timelines/timeline.vue b/app/components/timelines/timeline.vue index 9a8fe0d..b6aa366 100644 --- a/app/components/timelines/timeline.vue +++ b/app/components/timelines/timeline.vue @@ -16,9 +16,6 @@
{{ error.message }}
- - - @@ -43,7 +40,6 @@ import { useIntersectionObserver } from "@vueuse/core"; import type { z } from "zod"; import * as m from "~~/paraglide/messages.js"; import NoPosts from "../errors/NoPosts.vue"; -import ReachedEnd from "../errors/ReachedEnd.vue"; import Spinner from "../graphics/spinner.vue"; import { Button } from "../ui/button"; import TimelineItem from "./timeline-item.vue";