|
@@ -15,7 +15,7 @@ import { Pagination, WalletEnum } from "@/types";
|
|
|
import { useSetState } from "ahooks";
|
|
|
import { InfiniteScroll } from "antd-mobile";
|
|
|
import { useTranslations } from "next-intl";
|
|
|
-import { FC, useRef, useState } from "react";
|
|
|
+import { FC, useEffect, useRef, useState } from "react";
|
|
|
|
|
|
const Header = () => {
|
|
|
const { wallet } = useWalletStore((state) => ({
|
|
@@ -31,6 +31,9 @@ const Header = () => {
|
|
|
setTipsStatus(key);
|
|
|
tipsRef.current?.onOpen();
|
|
|
};
|
|
|
+ useEffect(() => {
|
|
|
+ modalHandler("Replay")
|
|
|
+ }, [])
|
|
|
return (
|
|
|
<>
|
|
|
<HeaderBack showBack={true} title={"Replay Wallet"}>
|