fix: renew without params
This commit is contained in:
@@ -39,7 +39,7 @@ export default function DeleteConfirmModal({ id, closeModal }) {
|
||||
</Button>
|
||||
</>
|
||||
}
|
||||
className="animate__animated animate__fadeInDown animate__faster"
|
||||
// className="animate__animated animate__fadeInDown animate__faster"
|
||||
></StyledModal>
|
||||
</Modal>
|
||||
);
|
||||
|
||||
@@ -25,7 +25,7 @@ export default function DeleteMessageConfirmModal({ closeModal, mid = 0 }) {
|
||||
return (
|
||||
<Modal>
|
||||
<StyledModal
|
||||
className="animate__animated animate__fadeInDown animate__faster"
|
||||
// className="animate__animated animate__fadeInDown animate__faster"
|
||||
buttons={
|
||||
<>
|
||||
<Button onClick={closeModal}>Cancel</Button>
|
||||
|
||||
@@ -63,7 +63,7 @@ export default function LogoutConfirmModal({ closeModal }) {
|
||||
</Button>
|
||||
</>
|
||||
}
|
||||
className="animate__animated animate__fadeInDown animate__faster"
|
||||
// className="animate__animated animate__fadeInDown animate__faster"
|
||||
>
|
||||
<div className="clear">
|
||||
<label htmlFor="clear_cb" className="txt">
|
||||
|
||||
@@ -52,7 +52,7 @@ export default function useStreaming() {
|
||||
const controller = new AbortController();
|
||||
setStatus(StreamStatus.initializing);
|
||||
const {
|
||||
authData: { token, uid: loginUid },
|
||||
authData: { token, refreshToken, uid: loginUid },
|
||||
footprint: { afterMid, usersVersion },
|
||||
} = store;
|
||||
console.log("set uid use");
|
||||
@@ -81,9 +81,7 @@ export default function useStreaming() {
|
||||
) {
|
||||
// 重新登录
|
||||
if (response.status == 401) {
|
||||
renewToken();
|
||||
// dispatch(resetAuthData());
|
||||
// return;
|
||||
renewToken({ token, refreshToken });
|
||||
}
|
||||
// client-side errors are usually non-retriable:
|
||||
throw new FatalError();
|
||||
|
||||
Reference in New Issue
Block a user