Skip to content

Commit 19e1f38

Browse files
committed
chore: comments
1 parent 44183d7 commit 19e1f38

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ui/store/actions.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7737,7 +7737,6 @@ export async function submitShieldClaim(params: {
77377737
params.reimbursementWalletAddress,
77387738
);
77397739
formData.append('description', params.caseDescription);
7740-
// TODO: temporary value for signature, update to correct signature after implement signature verification
77417740
formData.append('signature', params.signature);
77427741
formData.append('timestamp', Date.now().toString());
77437742

@@ -7774,6 +7773,11 @@ export async function submitShieldClaim(params: {
77747773
}
77757774
}
77767775

7776+
/**
7777+
* Fetches all shield claims, relates to the current user profile ID.
7778+
*
7779+
* @returns The shield claims.
7780+
*/
77777781
export async function getShieldClaims() {
77787782
try {
77797783
const claims = await submitRequestToBackground<Claim[]>('getClaims');

0 commit comments

Comments
 (0)