@@ -3,7 +3,7 @@ import { ScrollArea } from "@follow/components/ui/scroll-area/index.js"
3
3
import { useTitle } from "@follow/hooks"
4
4
import type { FeedModel , InboxModel , SupportedLanguages } from "@follow/models/types"
5
5
import { IN_ELECTRON } from "@follow/shared/constants"
6
- import { clearSelection , stopPropagation } from "@follow/utils/dom"
6
+ import { stopPropagation } from "@follow/utils/dom"
7
7
import { cn } from "@follow/utils/utils"
8
8
import { ErrorBoundary } from "@sentry/react"
9
9
import { useEffect , useMemo , useRef } from "react"
@@ -166,9 +166,8 @@ export const EntryContent: Component<EntryContentProps> = ({
166
166
ref = { scrollerRef }
167
167
>
168
168
< div
169
- onPointerDown = { clearSelection }
170
169
style = { stableRenderStyle }
171
- className = "duration-200 ease-in-out animate-in fade-in slide-in-from-bottom-24 f-motion-reduce:fade-in-0 f-motion-reduce:slide-in-from-bottom-0"
170
+ className = "select-text duration-200 ease-in-out animate-in fade-in slide-in-from-bottom-24 f-motion-reduce:fade-in-0 f-motion-reduce:slide-in-from-bottom-0"
172
171
key = { entry . entries . id }
173
172
>
174
173
< article
@@ -179,7 +178,7 @@ export const EntryContent: Component<EntryContentProps> = ({
179
178
< EntryTitle entryId = { entryId } compact = { compact } />
180
179
181
180
< WrappedElementProvider boundingDetection >
182
- < div className = "mx-auto mb-32 mt-8 max-w-full cursor-auto select-text text-[0.94rem]" >
181
+ < div className = "mx-auto mb-32 mt-8 max-w-full cursor-auto text-[0.94rem]" >
183
182
< TitleMetaHandler entryId = { entry . entries . id } />
184
183
< AISummary entryId = { entry . entries . id } />
185
184
< ErrorBoundary fallback = { RenderError } >
0 commit comments