Skip to content

Commit

Permalink
fake change
Browse files Browse the repository at this point in the history
  • Loading branch information
mel-thomas committed May 1, 2024
1 parent 3bb6bf8 commit b0f1287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .env.example

This file was deleted.

2 changes: 1 addition & 1 deletion app/routes/magic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function Magic() {
return (
<div className="flex min-h-full flex-col justify-center">
<div className="mx-auto w-full max-w-md px-8">
<p>check your inbox for a magic link</p>
<p>check your inbox for a magic link!</p>
</div>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions app/routes/start.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const action = async ({ request }: ActionFunctionArgs) => {
);

const res = await raw.json();

debugger;

Check failure on line 87 in app/routes/start.tsx

View workflow job for this annotation

GitHub Actions / ⬣ ESLint

Unexpected 'debugger' statement
if (res.user_id && !existingUser) {
await createUser(email, res.user_id);
}
Expand Down Expand Up @@ -202,7 +202,7 @@ export default function Start() {
type="text"
name="coordinates"
ref={coordinatesRef}
style={{ display: "none" }}
style={{ display: "block" }}
/>
<input type="hidden" name="redirectTo" value={redirectTo} />
<button
Expand Down

0 comments on commit b0f1287

Please sign in to comment.