()
| 26 | const navigate = useNavigate(); |
| 27 | const { user } = useAuthState(); |
| 28 | const closeDialog = () => { |
| 29 | setOpen(false); |
| 30 | }; |
| 31 | const [graphName, setGraphName] = useState<string>(""); |
| 32 | |
| 33 | const createGraph = useCallback(async () => { |
nothing calls this directly
no outgoing calls
no test coverage detected