2 Commits

Author SHA1 Message Date
6bc6c2270a Update react to v19
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
2025-07-04 00:18:08 +00:00
9af843c287 Fix cargo clippy issue
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-03 08:29:07 +02:00
2 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ impl actix_web::error::ResponseError for HttpErr {
} }
} }
fn error_response(&self) -> HttpResponse<BoxBody> { fn error_response(&self) -> HttpResponse<BoxBody> {
log::error!("Error while processing request! {}", self); log::error!("Error while processing request! {self}");
HttpResponse::InternalServerError().body("Failed to execute request!") HttpResponse::InternalServerError().body("Failed to execute request!")
} }

View File

@ -13,13 +13,13 @@
"@fluentui/react-components": "^9.66.3", "@fluentui/react-components": "^9.66.3",
"@fluentui/react-icons": "^2.0.304", "@fluentui/react-icons": "^2.0.304",
"filesize": "^10.1.6", "filesize": "^10.1.6",
"react": "^18.3.1", "react": "^19.1.0",
"react-dom": "^18.3.1" "react-dom": "^19.1.0"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.29.0", "@eslint/js": "^9.29.0",
"@types/react": "^18.3.23", "@types/react": "^19.1.8",
"@types/react-dom": "^18.3.7", "@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.34.1", "@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.35.0", "@typescript-eslint/parser": "^8.35.0",
"@vitejs/plugin-react": "^4.6.0", "@vitejs/plugin-react": "^4.6.0",