Skip to content

Commit 4db152e

Browse files
committed
Merge branch 'develop' into fix-dynamic-breakpoint-view
2 parents 39d5da0 + 79183a2 commit 4db152e

5 files changed

Lines changed: 483 additions & 185 deletions

File tree

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18.20.0

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"@tanstack/react-query-persist-client": "^5.8.4",
1010
"@types/dompurify": "^2.3.4",
1111
"@types/jspath": "^0.4.0",
12-
"axios": "^0.21.2",
12+
"axios": "^1.8.4",
1313
"axios-cache-adapter": "^2.7.3",
1414
"country-emoji": "^1.5.4",
15-
"dompurify": "^2.2.7",
15+
"dompurify": "^3.2.4",
1616
"firebase": "^11.2.0",
1717
"htmlparser2": "^8.0.1",
1818
"jsonpath": "^1.1.1",
@@ -41,6 +41,9 @@
4141
"web-vitals": "^0.2.4",
4242
"zustand": "^4.3.3"
4343
},
44+
"engines": {
45+
"node": "18"
46+
},
4447
"scripts": {
4548
"start": "vite",
4649
"preview": "vite preview",
@@ -92,7 +95,7 @@
9295
"prettier": "^2.7.1",
9396
"terser": "^5.19.2",
9497
"typescript": "^5.1.6",
95-
"vite": "^4.4.5",
98+
"vite": "^6.2.3",
9699
"vite-plugin-svgr": "^3.2.0",
97100
"vite-tsconfig-paths": "^4.2.0"
98101
}

src/lib/interceptors/DefaultRequestInterceptor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { AxiosRequestConfig } from 'axios'
1+
import { InternalAxiosRequestConfig } from 'axios'
22
import { API_ENDPOINT } from 'src/config'
33
import { getUserToken } from 'src/features/auth'
44
import { isProduction } from 'src/utils/Environment'
55

6-
export async function DefaultRequestInterceptor(config: AxiosRequestConfig) {
6+
export async function DefaultRequestInterceptor(config: InternalAxiosRequestConfig) {
77
if (config) {
88
config.baseURL = isProduction() ? API_ENDPOINT : '/api'
99
if (config.headers) {
File renamed without changes.

0 commit comments

Comments
 (0)