This commit is contained in:
checktheroads 2020-01-21 20:03:10 -07:00
parent ed9c9e4700
commit 5fe4c6a0f0
2 changed files with 0 additions and 2 deletions

View file

@ -73,7 +73,6 @@ const Result = React.forwardRef(
(error && error.response?.data?.output) ||
(error && error.message) ||
config.messages.general;
error && console.log("ERROR", errorMsg);
return (
<AccordionItem
isDisabled={loading}

View file

@ -1,6 +1,5 @@
import React from "react";
import { Box, useColorMode } from "@chakra-ui/core";
import useColored from "~/hooks/useColored";
const Table = props => <Box as="table" textAlign="left" mt={4} width="full" {...props} />;