upgrade almost all frontend deps

typescript isn't at the latest because eslint warns about it.
This commit is contained in:
Scott Lamb
2022-03-04 08:55:06 -08:00
parent 274dc09ec3
commit 90c9a31ad0
4 changed files with 686 additions and 534 deletions

View File

@@ -57,7 +57,6 @@ test("success", async () => {
);
userEvent.type(screen.getByLabelText(/Username/), "slamb");
userEvent.type(screen.getByLabelText(/Password/), "hunter2{enter}");
jest.runOnlyPendingTimers();
await waitFor(() => expect(onSuccess).toHaveBeenCalledTimes(1));
});

View File

@@ -114,7 +114,7 @@ export class SnackbarProvider
handleCloseSnackbar = (
key: React.Key,
event: React.SyntheticEvent<any>,
event: Event | React.SyntheticEvent<any>,
reason: SnackbarCloseReason
) => {
if (reason === "clickaway") return;