Skip to content

Commit

Permalink
💚 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mit-27 committed Nov 18, 2024
1 parent 9537a3b commit c18dc4f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions apps/webapp/src/app/(Magic-Link)/magic-link/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { categoriesVerticals } from "@panora/shared/src/categories";
import { ArrowLeft, ArrowLeftRight, Search, X } from "lucide-react";
import { useEffect, useState } from "react";
import { useForm } from "react-hook-form";
import { Suspense } from "react";

interface IBasicAuthFormData {
[key: string]: string;
Expand Down Expand Up @@ -565,7 +566,7 @@ const ProviderModal = () => {
<div className="flex items-center bg-white border-[1px] border-black text-black px-4 py-2 rounded-lg">
<span className="text-md mr-3"></span>
<span className="text-sm">
You've successfully connected your account!
You&apos;ve successfully connected your account!
</span>
</div>
<button
Expand Down Expand Up @@ -602,4 +603,12 @@ const ProviderModal = () => {
);
};

export default ProviderModal;
const MagicLinkPage = () => {
return (
<Suspense fallback={<div>Loading...</div>}>
<ProviderModal />
</Suspense>
);
};

export default MagicLinkPage;

0 comments on commit c18dc4f

Please sign in to comment.