Compare commits

...

3 Commits

Author SHA1 Message Date
431accb20e Merge pull request 'fix-ci' (#299) from fix-ci into staging
All checks were successful
CI/CD Pipeline / test (push) Successful in 9m9s
CI/CD Pipeline / deploy-staging (push) Successful in 18m32s
CI/CD Pipeline / deploy-main (push) Has been skipped
Reviewed-on: #299
2024-03-21 00:26:35 +01:00
58db070cc0 ...
Some checks failed
CI/CD Pipeline / deploy-staging (push) Has been cancelled
CI/CD Pipeline / deploy-main (push) Has been cancelled
CI/CD Pipeline / test (push) Has been cancelled
2024-03-21 00:26:10 +01:00
f50ea78e3f Merge pull request 'fix ci' (#298) from fix-ci into main
Some checks failed
CI/CD Pipeline / deploy-staging (push) Blocked by required conditions
CI/CD Pipeline / deploy-main (push) Blocked by required conditions
CI/CD Pipeline / test (push) Has been cancelled
Reviewed-on: #298
2024-03-21 00:17:44 +01:00

View File

@ -48,7 +48,7 @@ pub struct User {
}
impl std::fmt::Debug for User {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("User")
.field("id", &self.id)
.field("name", &self.name)