From c129108b786a3389181c401b0bdfe1a3de528ebb Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 4 Sep 2025 19:36:23 -0500 Subject: 108 fixes (#8977) * Translation comment * Fix error handling in starter pack generation * Allow access to DM settings for age restricted users * Leave post stat unit formatting up to translators --- src/lib/custom-animations/CountWheel.tsx | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'src/lib/custom-animations/CountWheel.tsx') diff --git a/src/lib/custom-animations/CountWheel.tsx b/src/lib/custom-animations/CountWheel.tsx index 6db22554e..b8763827a 100644 --- a/src/lib/custom-animations/CountWheel.tsx +++ b/src/lib/custom-animations/CountWheel.tsx @@ -6,13 +6,12 @@ import Animated, { useReducedMotion, withTiming, } from 'react-native-reanimated' -import {i18n} from '@lingui/core' import {decideShouldRoll} from '#/lib/custom-animations/util' import {s} from '#/lib/styles' import {Text} from '#/view/com/util/text/Text' import {atoms as a, useTheme} from '#/alf' -import {formatPostStatCount} from '#/components/PostControls/util' +import {useFormatPostStatCount} from '#/components/PostControls/util' const animationConfig = { duration: 400, @@ -92,13 +91,11 @@ export function CountWheel({ big, isLiked, hasBeenToggled, - compactCount, }: { likeCount: number big?: boolean isLiked: boolean hasBeenToggled: boolean - compactCount?: boolean }) { const t = useTheme() const shouldAnimate = !useReducedMotion() && hasBeenToggled @@ -111,12 +108,9 @@ export function CountWheel({ const [key, setKey] = React.useState(0) const [prevCount, setPrevCount] = React.useState(likeCount) const prevIsLiked = React.useRef(isLiked) - const formattedCount = formatPostStatCount(i18n, likeCount, { - compact: compactCount, - }) - const formattedPrevCount = formatPostStatCount(i18n, prevCount, { - compact: compactCount, - }) + const formatPostStatCount = useFormatPostStatCount() + const formattedCount = formatPostStatCount(likeCount) + const formattedPrevCount = formatPostStatCount(prevCount) React.useEffect(() => { if (isLiked === prevIsLiked.current) { -- cgit 1.4.1