Skip to content

Commit

Permalink
Merge pull request #311 from sohosai/develop
Browse files Browse the repository at this point in the history
deploy 20240519
  • Loading branch information
arata-nvm authored May 19, 2024
2 parents a479096 + b6dec5f commit 47f8900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sos24-use-case/src/form/dto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl From<(Form, Option<FormAnswer>)> for FormDto {
let (answer_id, answered_at) = form_answer
.map(|form_answer| {
let form_answer = form_answer.destruct();
(Some(form_answer.id), Some(form_answer.updated_at))
(Some(form_answer.id), Some(form_answer.created_at))
})
.unwrap_or((None, None));

Expand Down

0 comments on commit 47f8900

Please sign in to comment.