| 5 | import { queryClient } from '~/providers/root/react-query-provider' |
| 6 | |
| 7 | export interface UrlConfig { |
| 8 | adminUrl: string |
| 9 | |
| 10 | webUrl: string |
| 11 | } |
| 12 | |
| 13 | export const adminUrlAtom = atom<string | null>(null) |
| 14 | export const webUrlAtom = atom<string | null>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected