fix: singer
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 47s

This commit is contained in:
sexygoat
2026-04-30 17:43:52 +08:00
parent a5c7e46dd7
commit 52c36dfc9b

View File

@@ -196,9 +196,9 @@ const handleScanLogin = async () => {
const getPathDeviceId = () => {
const params = new URLSearchParams(window.location.search);
const identifier = params.get('identifier');
if (identifier) {
identifier.value = identifier;
const idf = params.get('identifier');
if (idf) {
identifier.value = idf;
handleLogin();
}
};