Compare commits
No commits in common. "3f0fedd2b1c3ab87d866f8e5323ae55e2fe14b40" and "c5fa385a7d831318669e633b18045efb625e9827" have entirely different histories.
3f0fedd2b1
...
c5fa385a7d
|
@ -1,3 +1,7 @@
|
||||||
|
import { Input } from "@/components/ui/input";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import "@lumeweb/sdk/lib/style.css";
|
||||||
|
import "@/styles/global.css";
|
||||||
import React, {
|
import React, {
|
||||||
createContext,
|
createContext,
|
||||||
createRef,
|
createRef,
|
||||||
|
@ -38,11 +42,6 @@ import jdu from "json-data-uri";
|
||||||
import { ERC721_ABI } from "@/lib/erc721-abi";
|
import { ERC721_ABI } from "@/lib/erc721-abi";
|
||||||
import { Card, CardContent, CardHeader } from "@/components/ui/card";
|
import { Card, CardContent, CardHeader } from "@/components/ui/card";
|
||||||
import LogoImg from "@/assets/lume-logo.png";
|
import LogoImg from "@/assets/lume-logo.png";
|
||||||
import { Input } from "@/components/ui/input";
|
|
||||||
import { Button } from "@/components/ui/button";
|
|
||||||
import "@lumeweb/sdk/lib/style.css";
|
|
||||||
import "@/styles/global.css";
|
|
||||||
|
|
||||||
let BOOT_FUNCTIONS: (() => Promise<any>)[] = [];
|
let BOOT_FUNCTIONS: (() => Promise<any>)[] = [];
|
||||||
|
|
||||||
export const AppContext = createContext<any>(undefined);
|
export const AppContext = createContext<any>(undefined);
|
||||||
|
@ -250,7 +249,7 @@ function LoginDash() {
|
||||||
<LumeDashboard disabled={!ready}>
|
<LumeDashboard disabled={!ready}>
|
||||||
<LumeDashboardTrigger asChild>
|
<LumeDashboardTrigger asChild>
|
||||||
<Button variant={"default"} disabled={!inited}>
|
<Button variant={"default"} disabled={!inited}>
|
||||||
Open Dashboard
|
Login
|
||||||
</Button>
|
</Button>
|
||||||
</LumeDashboardTrigger>
|
</LumeDashboardTrigger>
|
||||||
</LumeDashboard>
|
</LumeDashboard>
|
||||||
|
|
Loading…
Reference in New Issue