diff options
author | hailey <me@haileyok.com> | 2025-06-30 13:24:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-30 13:24:53 -0700 |
commit | 806d3792a9c6185169dcf0ecb93a4fa1157cc90f (patch) | |
tree | 30cc01862e2d2d6a8939dca8a9d56eb7e7b81f19 /src/components/dialogs/GifSelect.tsx | |
parent | 5e20d5ffaba1c33e85e5e1d84bb4dea93ed249e9 (diff) | |
download | voidsky-806d3792a9c6185169dcf0ecb93a4fa1157cc90f.tar.zst |
feat: use t.gifs cdn for tenor search results (#8574)
Diffstat (limited to 'src/components/dialogs/GifSelect.tsx')
-rw-r--r-- | src/components/dialogs/GifSelect.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx index 8ced355e4..e18fdf2db 100644 --- a/src/components/dialogs/GifSelect.tsx +++ b/src/components/dialogs/GifSelect.tsx @@ -5,7 +5,7 @@ import React, { useRef, useState, } from 'react' -import {TextInput, View} from 'react-native' +import {type TextInput, View} from 'react-native' import {useWindowDimensions} from 'react-native' import {Image} from 'expo-image' import {msg, Trans} from '@lingui/macro' @@ -15,13 +15,14 @@ import {logEvent} from '#/lib/statsig/statsig' import {cleanError} from '#/lib/strings/errors' import {isWeb} from '#/platform/detection' import { - Gif, + type Gif, + tenorUrlToBskyGifUrl, useFeaturedGifsQuery, useGifSearchQuery, } from '#/state/queries/tenor' import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' -import {ListMethods} from '#/view/com/util/List' +import {type ListMethods} from '#/view/com/util/List' import {atoms as a, ios, native, useBreakpoints, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -316,7 +317,7 @@ export function GifPreview({ t.atoms.bg_contrast_25, ]} source={{ - uri: gif.media_formats.tinygif.url, + uri: tenorUrlToBskyGifUrl(gif.media_formats.tinygif.url), }} contentFit="cover" accessibilityLabel={gif.title} |