/** * In case you need to, you can make last-minute modifications to the * graph before it's loaded. This might be preferable in case there * are certain edits that need to be applied conditionally. */ import { isMobile } from "app/utils" export default function reviseGraph (graph) { if (isMobile) { // } return graph }