File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
@core/forward/request/src/request-client/modules
effects/layouts/src/widgets/preferences Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class InterceptorManager {
1919 ) {
2020 this . axiosInstance . interceptors . request . use (
2121 fulfilled ,
22- rejected || ( ( res ) => res ) ,
22+ rejected || ( ( res ) => Promise . reject ( res ) ) ,
2323 ) ;
2424 }
2525
@@ -31,7 +31,7 @@ class InterceptorManager {
3131 ) {
3232 this . axiosInstance . interceptors . response . use (
3333 fulfilled ,
34- rejected || ( ( res ) => res ) ,
34+ rejected || ( ( res ) => Promise . reject ( res ) ) ,
3535 ) ;
3636 }
3737}
Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ async function handleReset() {
416416 variant =" ghost"
417417 @click =" handleClearCache"
418418 >
419- <IcRoundRestartAlt class =" mr-2 size-4" />
419+ <!-- < IcRoundRestartAlt class="mr-2 size-4" /> -- >
420420 {{ $t('preferences.clearAndLogout') }}
421421 </VbenButton >
422422 </template >
You can’t perform that action at this time.
0 commit comments