Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
wereHamster committed Jan 27, 2025
1 parent 61d3794 commit dfe2154
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/src/components/Generator/internal/Stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as React from "react";
import { downloadUrl } from "src/shared";
import { useImmer } from "use-immer";
import { useContext } from "../context";
import { useQuery } from "react-query";
import { useQuery } from "@tanstack/react-query";

/**
* The underlying DOM element which is rendered by this component.
Expand Down
2 changes: 1 addition & 1 deletion website/src/domain/geodata.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import cityData from "public/swiss-city-topo.json";
import { useQuery } from "react-query";
import { useQuery } from "@tanstack/react-query";
import { previewSourceUrl } from "src/shared";
import * as topojson from "topojson";
import { Value } from "../components/Generator/context";
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/theme";
import { enableMapSet } from "immer";
import { AppProps } from "next/app";
import * as React from "react";
import { QueryClient, QueryClientProvider, useQuery } from "react-query";
import { QueryClient, QueryClientProvider, useQuery } from "@tanstack/react-query";

enableMapSet();

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/mutations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
import * as turf from "@turf/turf";
import { FlyToInterpolator } from "@deck.gl/core";
import { parse } from "path";
import { useQuery } from "react-query";
import { useQuery } from "@tanstack/react-query";
import { GeoJsonLayer } from "@deck.gl/layers";
import DeckGL from "@deck.gl/react";

Expand Down

0 comments on commit dfe2154

Please sign in to comment.