Fixed case sensitive issue with module import BIS

This commit is contained in:
Michael
2021-08-05 21:27:42 +02:00
parent 7a693f7292
commit 62ae8117e6
3 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ check the providers available here: https://supabase.io/docs/guides/auth
import Login from "./UI/Login";
import { supabase } from "utils/supabaseClient";
import { useAuth } from "utils/Authcontext";
import { useAuth } from "utils/AuthContext";
const Container = (props) => {
const { user, signOut } = useAuth();

View File

@@ -17,7 +17,7 @@ import Head from "next/head";
import Nav from "./Nav";
import { ToastContainer } from "react-toastify";
import { supabase } from "utils/supabaseClient";
import { useAuth } from "utils/Authcontext";
import { useAuth } from "utils/AuthContext";
import { useEffect } from "react";
const Layout = (props) => {

View File

@@ -13,7 +13,7 @@ import { Prices } from "utils/priceList";
import { Switch } from "@headlessui/react";
import axios from "axios";
import router from "next/router";
import { useAuth } from "utils/Authcontext";
import { useAuth } from "utils/AuthContext";
const Pricing = () => {
const [enabled, setEnabled] = useState(false);