Compare commits

...

1 Commits

Author SHA1 Message Date
sharma01ketan
a00ef58202 changed onClick to onMouseDown 2024-09-02 21:23:10 +05:30

View File

@@ -69,7 +69,7 @@ export const AuthEmailForm: FC<TAuthEmailForm> = observer((props) => {
{email.length > 0 && (
<XCircle
className="absolute right-3 h-5 w-5 stroke-custom-text-400 hover:cursor-pointer"
onClick={() => setEmail("")}
onMouseDown={() => setEmail("")}
/>
)}
</div>