Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
willclarktech committed Jun 8, 2021
1 parent 5afcfa3 commit 4cc6a4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App/routes/Channel/AcknowledgementsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export function AcknowledgementsList({

useEffect(() => {
(async function updatePacketAcknowledgementsResponse() {
const acketAcknowledgementsResponse = await getClient().ibc.channel.packetAcknowledgements(
const packetAcknowledgementsResponse = await getClient().ibc.channel.packetAcknowledgements(
portId,
channelId,
);
setPacketAcknowledgementsResponse(acketAcknowledgementsResponse);
setPacketAcknowledgementsResponse(packetAcknowledgementsResponse);
})();
}, [getClient, portId, channelId]);

Expand Down

0 comments on commit 4cc6a4e

Please sign in to comment.