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 {
19
19
) {
20
20
this . axiosInstance . interceptors . request . use (
21
21
fulfilled ,
22
- rejected || ( ( res ) => res ) ,
22
+ rejected || ( ( res ) => Promise . reject ( res ) ) ,
23
23
) ;
24
24
}
25
25
@@ -31,7 +31,7 @@ class InterceptorManager {
31
31
) {
32
32
this . axiosInstance . interceptors . response . use (
33
33
fulfilled ,
34
- rejected || ( ( res ) => res ) ,
34
+ rejected || ( ( res ) => Promise . reject ( res ) ) ,
35
35
) ;
36
36
}
37
37
}
Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ async function handleReset() {
416
416
variant =" ghost"
417
417
@click =" handleClearCache"
418
418
>
419
- <IcRoundRestartAlt class =" mr-2 size-4" />
419
+ <!-- < IcRoundRestartAlt class="mr-2 size-4" /> -- >
420
420
{{ $t('preferences.clearAndLogout') }}
421
421
</VbenButton >
422
422
</template >
You can’t perform that action at this time.
0 commit comments