Skip to content

Commit

Permalink
Remove unwanted files and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wryonik committed May 26, 2024
1 parent db6a076 commit d31309d
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 302 deletions.
9 changes: 8 additions & 1 deletion packages/app/src/components/EmailInputMethod.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import { useState } from "react";
import { Button, OutlinedButton } from "./Button";

const EmailInputMethod = ({ onClickGoogle, onClickEMLFile }) => {
const EmailInputMethod = ({
onClickGoogle,
onClickEMLFile,
}: {
onClickGoogle: () => void;
onClickEMLFile: () => void;
}) => {
return (
<div
style={{
Expand All @@ -15,6 +21,7 @@ const EmailInputMethod = ({ onClickGoogle, onClickEMLFile }) => {
<Button onClick={onClickGoogle}>Sign in with Google</Button>
or
<OutlinedButton
data-testid="upload-email-eml-file-button"
onClick={() => {
onClickEMLFile();
}}
Expand Down
30 changes: 0 additions & 30 deletions packages/app/src/contexts/Account/AccountContext.ts

This file was deleted.

172 changes: 0 additions & 172 deletions packages/app/src/contexts/Account/AccountProvider.tsx

This file was deleted.

2 changes: 0 additions & 2 deletions packages/app/src/contexts/Account/index.ts

This file was deleted.

Loading

0 comments on commit d31309d

Please sign in to comment.