()
| 96 | }; |
| 97 | |
| 98 | const close = () => { |
| 99 | if (originalStatement !== statement && context?.messageId) { |
| 100 | messageStore.updateStatement(context?.messageId, originalStatement, statement); |
| 101 | } |
| 102 | queryStore.toggleDrawer(false); |
| 103 | }; |
| 104 | |
| 105 | return ( |
| 106 | <Drawer open={queryStore.showDrawer} anchor="right" className="w-full" onClose={close}> |
no outgoing calls
no test coverage detected