Skip to content

Commit

Permalink
fix: small change in result screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Rithvik-padma committed Sep 16, 2023
1 parent 70ddeb5 commit 91f8726
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/components/ResultCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ export default function ResultCard({ message, isSuccess }: Props) {
<div
className="p-12 font-medium drop-shadow rounded-lg mt-4 flex flex-col items-center bg-white dark:bg-surface-02dp"
tabIndex={0}
aria-label={
isSuccess ? "Payment is successful" : "Payment is unsuccessful"
}
aria-label={message}
>
<img
src={isSuccess ? "assets/icons/tick.svg" : "assets/icons/cross.svg"}
Expand Down

0 comments on commit 91f8726

Please sign in to comment.