Revert all package upgrades to unblock testing.

This commit is contained in:
Patrick Fic
2023-01-25 11:20:51 -08:00
parent d8cc25a54f
commit 66a80e439f
131 changed files with 18482 additions and 10892 deletions

View File

@@ -1,9 +1,9 @@
import React from "react";
import { NumericFormat } from "react-number-format";
import NumberFormat from "react-number-format";
export default function CurrencyFormatter(props) {
return (
<NumericFormat
<NumberFormat
thousandSeparator={true}
decimalScale={2}
fixedDecimalScale={true}

View File

@@ -142,7 +142,7 @@ middlewares.push(
const cache = new InMemoryCache({});
const c = new ApolloClient({
export default new ApolloClient({
link: ApolloLink.from(middlewares),
cache,
connectToDevTools: process.env.NODE_ENV !== "production",
@@ -161,5 +161,3 @@ const c = new ApolloClient({
},
},
});
export default c;