From 53e43a957c2e0f3f020c34653cbf5029ec6dd8bb Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 9 Sep 2025 18:38:21 +0300 Subject: run `yarn lint --fix` (#9013) --- src/state/queries/resolve-link.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/state/queries/resolve-link.ts') 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() -- cgit 1.4.1