()
| 571 | const transciption_uuid = event.payload; |
| 572 | |
| 573 | function Element() { |
| 574 | return ( |
| 575 | <div onClick={(e) => e.stopPropagation()} class="cursor-default"> |
| 576 | <NotificationInfo |
| 577 | title="Info" |
| 578 | message={`${transciption_uuid}: Transcribing, please don't close the app`} |
| 579 | /> |
| 580 | </div> |
| 581 | ); |
| 582 | } |
| 583 | |
| 584 | const notification_id = push_notification(Element()); |
| 585 |