diff options
author | Eric Bailey <git@esb.lol> | 2025-09-04 19:36:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-04 19:36:23 -0500 |
commit | c129108b786a3389181c401b0bdfe1a3de528ebb (patch) | |
tree | e075d0c41c8829d9c0b66464ba7cb86dd105be4e /src/lib/custom-animations/CountWheel.tsx | |
parent | 0b480bdaf862b0f93ed480589f81433bd6c93126 (diff) | |
download | voidsky-c129108b786a3389181c401b0bdfe1a3de528ebb.tar.zst |
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
Diffstat (limited to 'src/lib/custom-animations/CountWheel.tsx')
-rw-r--r-- | src/lib/custom-animations/CountWheel.tsx | 14 |
1 files changed, 4 insertions, 10 deletions
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) { |