chore: update frontend dependencies

This commit is contained in:
Steven
2024-01-27 17:28:06 +08:00
parent 10d709c167
commit ed32b20c9e
55 changed files with 482 additions and 563 deletions

View File

@ -97,7 +97,7 @@ const SignIn = () => {
const authUrl = `${oauth2Config.authUrl}?client_id=${
oauth2Config.clientId
}&redirect_uri=${redirectUri}&state=${stateQueryParameter}&response_type=code&scope=${encodeURIComponent(
oauth2Config.scopes.join(" ")
oauth2Config.scopes.join(" "),
)}`;
window.location.href = authUrl;
}