Skip to content

Commit

Permalink
[fix] resolve missing caseData on FileClaim screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronniebeggs committed Jun 19, 2024
1 parent 852b782 commit 15509bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function FileClaimScreen() {

async function fetchCaseData(caseUid: CaseUid) {
await getCaseById(caseUid)
.then(() => setCaseData(caseData))
.then(caseData => setCaseData(caseData))
.catch(response => fullStopErrorHandler(response));
}

Expand Down

0 comments on commit 15509bc

Please sign in to comment.