Skip to content

Commit

Permalink
remove undefined from success claim props
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant committed Jun 11, 2024
1 parent 7608567 commit 13f6bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/ClaimPage/SuccessClaim.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { BurnRedeemOperation } from '@/store/operationStore';

interface SuccessClaimProps {
operation: BurnRedeemOperation;
symbol?: string;
decimals?: number;
symbol: string;
decimals: number;
}

export function SuccessClaim(args: SuccessClaimProps) {
Expand Down

0 comments on commit 13f6bdc

Please sign in to comment.