forked from mrwyndham/fastpocket
bugfix - build failing
This commit is contained in:
parent
47da0edb68
commit
ec92e3917c
|
@ -10,7 +10,7 @@ import { AppRouterInstance } from "next/dist/shared/lib/app-router-context.share
|
||||||
import pb from "@/lib/pocketbase";
|
import pb from "@/lib/pocketbase";
|
||||||
import { useTheme } from "next-themes";
|
import { useTheme } from "next-themes";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import Icon from "@/components/Icon";
|
import Icon from "@/components/Icon/Icon";
|
||||||
|
|
||||||
interface HeaderProps {
|
interface HeaderProps {
|
||||||
isUserLoggedIn: boolean;
|
isUserLoggedIn: boolean;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import Icon from "@/components/Icon";
|
import Icon from "@/components/Icon/Icon";
|
||||||
import { useTheme } from "next-themes";
|
import { useTheme } from "next-themes";
|
||||||
import colors from "@/utils/colors";
|
import colors from "@/utils/colors";
|
||||||
import { useForm } from "react-hook-form";
|
import { useForm } from "react-hook-form";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import Icon from "@/components/Icon";
|
import Icon from "@/components/Icon/Icon";
|
||||||
import { useForm } from "react-hook-form";
|
import { useForm } from "react-hook-form";
|
||||||
import { yupResolver } from "@hookform/resolvers/yup";
|
import { yupResolver } from "@hookform/resolvers/yup";
|
||||||
import { signUpValidationSchema } from "@/utils/form";
|
import { signUpValidationSchema } from "@/utils/form";
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
import Logo from "@/components/Logo";
|
import Logo from "@/components/Logo";
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import Icon from "@/components/Icon";
|
import Icon from "@/components/Icon/Icon";
|
||||||
|
|
||||||
function Navigation({ isUserLoggedIn }: { isUserLoggedIn: boolean }) {
|
function Navigation({ isUserLoggedIn }: { isUserLoggedIn: boolean }) {
|
||||||
const [checked, setChecked] = useState<boolean>();
|
const [checked, setChecked] = useState<boolean>();
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
import Icon from "./Icon";
|
|
||||||
export default Icon;
|
|
|
@ -4,7 +4,6 @@ import { yupResolver } from "@hookform/resolvers/yup";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useForm } from "react-hook-form";
|
import { useForm } from "react-hook-form";
|
||||||
|
|
||||||
import Icon from "@/components/Icon";
|
|
||||||
import Footer from "@/components/Footer";
|
import Footer from "@/components/Footer";
|
||||||
import Background from "@/components/Utilities/Background";
|
import Background from "@/components/Utilities/Background";
|
||||||
import { toast } from "react-toastify";
|
import { toast } from "react-toastify";
|
||||||
|
|
Loading…
Reference in New Issue