fix: 修复log日志重复加载

This commit is contained in:
imeepos 2025-09-04 22:22:19 +08:00
parent cf13707c3c
commit 8f0e1f1104
2 changed files with 1 additions and 3 deletions

View File

@ -19,8 +19,6 @@ function App({ children }: PropsWithChildren<any>) {
if (login?.tokens?.accessToken) {
serverSdk.setAccessToken(login.tokens.accessToken, login.user.id)
}
const logs = await serverSdk.getMineLogs()
console.log({ logs })
} catch (error) {
console.error('Login failed:', error)
}

View File

@ -77,6 +77,6 @@
}
.loading-container .btn-secondary {
background: rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.9);
color: black;
}