Skip to content

Commit

Permalink
chore(funkit): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chloe-tan committed Dec 19, 2024
1 parent 8fd119d commit 5077b71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const FunkitToggle = ({ onToggle }: ElementProps) => {
{stringGetter({ key: STRING_KEYS.INSTANT })}
<Icon iconName={IconName.FunkitInstant} tw="float-right" />
</div>
<div tw="font-small-regular text-left">
<div tw="text-left font-small-regular">
{stringGetter({
key: STRING_KEYS.HIGHER_FEES,
params: { AMOUNT_USD: formattedLimitLabel },
Expand Down
2 changes: 1 addition & 1 deletion src/views/notifications/FunkitDepositNotification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const FunkitDepositNotification = ({

useEffect(() => {
if (funkitCheckoutItem?.state) {
dispatch(updateFunkitDeposit({ ...deposit, status: funkitCheckoutItem?.state }));
dispatch(updateFunkitDeposit({ ...deposit, status: funkitCheckoutItem.state }));
}
}, [funkitCheckoutItem?.state, dispatch, deposit]);

Expand Down

0 comments on commit 5077b71

Please sign in to comment.