Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
DonKoko committed Dec 11, 2024
1 parent 2035d71 commit 4ed6307
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/routes/_auth+/reset-password.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useEffect, useMemo, useState } from "react";
import { useEffect, useState } from "react";

import type {
ActionFunctionArgs,
Expand All @@ -13,6 +13,7 @@ import { Form } from "~/components/custom-form";

import PasswordInput from "~/components/forms/password-input";
import { Button } from "~/components/shared/button";
import { useSearchParams } from "~/hooks/search-params";
import { supabaseClient } from "~/integrations/supabase/client";

import {
Expand All @@ -24,8 +25,6 @@ import { makeShelfError, notAllowedMethod } from "~/utils/error";
import { isFormProcessing } from "~/utils/form";
import { data, error, getActionMethod, parseData } from "~/utils/http.server";
import { tw } from "~/utils/tw";
import { useSearchParams } from "~/hooks/search-params";
import { r } from "node_modules/msw/lib/glossary-2792c6da";

export function loader({ context }: LoaderFunctionArgs) {
const title = "Set new password";
Expand Down

0 comments on commit 4ed6307

Please sign in to comment.