diff --git a/web/src/lib/components/profile/FollowCardContent.svelte b/web/src/lib/components/profile/FollowCardContent.svelte index 4e39ed3d..021a84fe 100644 --- a/web/src/lib/components/profile/FollowCardContent.svelte +++ b/web/src/lib/components/profile/FollowCardContent.svelte @@ -5,6 +5,7 @@ import FollowButton from "./FollowButton.svelte"; import type { FollowChange, PersonData } from "./types"; import { createOptimisticCount } from "$lib/optimistic.svelte"; + import Separator from "$lib/components/ui/Separator.svelte"; let { person }: { person: PersonData } = $props(); @@ -16,7 +17,7 @@ const followed = (change: FollowChange) => followerCount.adjust(change.delta); -