add no account needed notice to recorder button

This commit is contained in:
MarconLP 2023-07-09 10:36:38 +02:00
parent 648398c9a6
commit 60516f4f7e
No known key found for this signature in database
GPG key ID: A08A9C8B623F5EA5

View file

@ -410,13 +410,13 @@ export default function Recorder({ closeModal, step, setStep }: Props) {
</button> </button>
<button <button
type="button" type="button"
className="ml-auto inline-flex items-center rounded-md bg-indigo-500 px-4 py-2 text-sm font-semibold leading-6 text-white shadow transition duration-150 ease-in-out hover:bg-indigo-400 disabled:cursor-not-allowed" className="ml-auto inline-flex items-center rounded-md bg-[#dc2625] px-4 py-2 text-sm font-semibold leading-6 text-white shadow transition duration-150 ease-in-out hover:bg-indigo-400 disabled:cursor-not-allowed"
onClick={() => { onClick={() => {
posthog?.capture("recorder: closed post-modal"); posthog?.capture("recorder: closed post-modal");
void closeModal(); void closeModal();
}} }}
> >
Close Delete
</button> </button>
</div> </div>
</div> </div>