mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
Fixed case sensitive issue with module import BIS
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user