diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-09-09 18:38:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-09 08:38:21 -0700 |
commit | 53e43a957c2e0f3f020c34653cbf5029ec6dd8bb (patch) | |
tree | 71f93d1c41d64109e600bbe91056b4b4e07c83e1 /src/state/queries/resolve-link.ts | |
parent | bb30b592d787870adc4b4d3e5029d8dc3125f7e7 (diff) | |
download | voidsky-53e43a957c2e0f3f020c34653cbf5029ec6dd8bb.tar.zst |
run `yarn lint --fix` (#9013)
Diffstat (limited to 'src/state/queries/resolve-link.ts')
-rw-r--r-- | src/state/queries/resolve-link.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/state/queries/resolve-link.ts b/src/state/queries/resolve-link.ts index 5856cfb5f..09dc739c0 100644 --- a/src/state/queries/resolve-link.ts +++ b/src/state/queries/resolve-link.ts @@ -1,4 +1,4 @@ -import {QueryClient, useQuery} from '@tanstack/react-query' +import {type QueryClient, useQuery} from '@tanstack/react-query' import {STALE} from '#/state/queries/index' import {useAgent} from '../session' @@ -9,10 +9,10 @@ export const RQKEY_LINK = (url: string) => [RQKEY_LINK_ROOT, url] const RQKEY_GIF_ROOT = 'resolve-gif' export const RQKEY_GIF = (url: string) => [RQKEY_GIF_ROOT, url] -import {BskyAgent} from '@atproto/api' +import {type BskyAgent} from '@atproto/api' -import {ResolvedLink, resolveGif, resolveLink} from '#/lib/api/resolve' -import {Gif} from './tenor' +import {type ResolvedLink, resolveGif, resolveLink} from '#/lib/api/resolve' +import {type Gif} from './tenor' export function useResolveLinkQuery(url: string) { const agent = useAgent() |