[WEB-4661] fix: move helpers file into utils #7568
This commit is contained in:
parent
a085c0ec62
commit
047080a66f
59 changed files with 68 additions and 72 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import React from "react";
|
||||
import { cn } from "../../helpers";
|
||||
import { cn } from "../utils";
|
||||
|
||||
export interface AuthForgotPasswordProps {
|
||||
onForgotPassword?: () => void;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import React, { useState, useMemo } from "react";
|
||||
import { E_PASSWORD_STRENGTH } from "@plane/constants";
|
||||
import { cn } from "../../helpers";
|
||||
import { cn } from "../utils";
|
||||
import { Button } from "../button/button";
|
||||
import { Spinner } from "../spinners/circular-spinner";
|
||||
import { AuthConfirmPasswordInput } from "./auth-confirm-password-input";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { Eye, EyeOff } from "lucide-react";
|
||||
import React, { useState } from "react";
|
||||
import { cn } from "../../helpers";
|
||||
import { cn } from "../utils";
|
||||
import { Input } from "../form-fields/input";
|
||||
|
||||
export interface AuthInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "autoComplete"> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue