about summary refs log tree commit diff
path: root/src/state/queries/actor-starter-packs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/queries/actor-starter-packs.ts')
-rw-r--r--src/state/queries/actor-starter-packs.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/queries/actor-starter-packs.ts b/src/state/queries/actor-starter-packs.ts
index 9de80b07d..487bcdfd9 100644
--- a/src/state/queries/actor-starter-packs.ts
+++ b/src/state/queries/actor-starter-packs.ts
@@ -6,9 +6,9 @@ import {
   useInfiniteQuery,
 } from '@tanstack/react-query'
 
-import {useAgent} from 'state/session'
+import {useAgent} from '#/state/session'
 
-const RQKEY_ROOT = 'actor-starter-packs'
+export const RQKEY_ROOT = 'actor-starter-packs'
 export const RQKEY = (did?: string) => [RQKEY_ROOT, did]
 
 export function useActorStarterPacksQuery({did}: {did?: string}) {