Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
maxknivets committed Oct 11, 2024
1 parent 88e910c commit dcaae21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/hooks/useLambdaState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function useLambdaState(addressHash: string) {
if (!response.ok) {
throw new Error('Network response was not ok');
}
const data = await response.json() as { ark: { arweave_address: string, ans: string, call_txid: string } };
const data = await response.json() as { ark: { arweave_address: string; ans: string; call_txid: string } };
return data.ark;
},
});
Expand Down

0 comments on commit dcaae21

Please sign in to comment.