Skip to content

Commit

Permalink
fix: unable to close zap modal (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrthiti authored Oct 5, 2023
1 parent 8459737 commit 9483330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/modal/Zap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export default function SendSats(props: ZapProps) {
<Modal showContainer={true} centerVertically={true} onClose={onClose}>
<div className="bg-black rounded-lg p-8 w-[400px] relative">
<div className="lnurl-tip" onClick={(e) => e.stopPropagation()}>
<div className="absolute top-2.5 right-2.5 cursor-pointer">
<div className="absolute top-2.5 right-2.5 cursor-pointer" onClick={onClose}>
<XMarkIcon width={20} height={20} />
</div>
<div className="lnurl-header">
Expand Down

0 comments on commit 9483330

Please sign in to comment.