diff options
author | Anderson Shindy Oki <[email protected]> | 2024-06-11 10:37:14 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-10 21:37:14 -0400 |
commit | 4d3c1f4b9d517ef3f64e489d011b939bc816d228 (patch) | |
tree | 29762d1d54801f52984324f582d82a22449a1ff1 /frontend/config | |
parent | eee8659ce16841df634a3960604f9b50d4c5e8c2 (diff) | |
download | bazarr-4d3c1f4b9d517ef3f64e489d011b939bc816d228.tar.gz bazarr-4d3c1f4b9d517ef3f64e489d011b939bc816d228.zip |
Upgraded react-query to v5
Diffstat (limited to 'frontend/config')
-rw-r--r-- | frontend/config/chunks.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/config/chunks.ts b/frontend/config/chunks.ts index c5c5f7fba..6dc7f3772 100644 --- a/frontend/config/chunks.ts +++ b/frontend/config/chunks.ts @@ -1,10 +1,11 @@ +// eslint-disable-next-line no-restricted-imports import { dependencies } from "../package.json"; const vendors = [ "react", "react-router-dom", "react-dom", - "react-query", + "@tanstack/react-query", "axios", "socket.io-client", ]; |