File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11import h from "@macrostrat/hyper" ;
22import { DocumentationPage } from "~/layouts" ;
33import { AuthStatus , useAuth } from "@macrostrat/auth-components" ;
4- import { usePostgresQuery } from "#/integrations/xdd/extractions/lib/ data-service" ;
4+ import { usePostgresQuery } from "#/integrations/xdd/extractions/data-service" ;
55
66export function Page ( ) {
77 return h ( DocumentationPage , { title : "Login" } , [
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ export function usePostgresQuery(
1616) {
1717 const [ data , setData ] = useState ( null ) ;
1818
19+ useEffect ( ( ) => {
20+ console . warn ( "usePostgresQuery should be moved to a separate package" ) ;
21+ } , [ ] ) ;
22+
1923 let _filters : FilterDef [ ] = [ ] ;
2024 if ( filters != null ) {
2125 if ( ! Array . isArray ( filters ) ) {
You can’t perform that action at this time.
0 commit comments