Skip to content

Commit fc7ab77

Browse files
committed
fix: update trading period
1 parent 3ad8a7c commit fc7ab77

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/app/(homepage)/components/Header/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Header: React.FC = () => {
2121
Trading Period:
2222
</span>
2323
<span className="text-klerosUIComponentsPrimaryText text-sm font-semibold">
24-
1 Month
24+
Until Monday 18th 23:59 UTC
2525
</span>
2626
</div>
2727
<Countdown />

src/app/layout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Metadata } from "next";
2+
import { ThemeProvider } from "next-themes";
23

34
import clsx from "clsx";
45
import localFont from "next/font/local";
@@ -11,8 +12,6 @@ import "./globals.css";
1112
import Footer from "@/components/layout/Footer";
1213
import Header from "@/components/layout/Header";
1314

14-
import { ThemeProvider } from "next-themes";
15-
1615
const geistSans = localFont({
1716
src: "./fonts/GeistVF.woff",
1817
variable: "--font-geist-sans",

src/consts/markets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const parentMarket: Address =
66
export const invalidMarket: Address =
77
"0xBF9696d9a921a9F79f3d6f07556Fb7E7052a0B1D";
88

9-
export const endTime: number = 1757776813;
9+
export const endTime: number = 1755561599;
1010

1111
export interface IDetails {
1212
imdbURL?: string;

0 commit comments

Comments
 (0)