remove typos

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2026-05-12 21:56:21 +03:00
parent 4b84a62467
commit 7f01cc4c60
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
3 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "ghost-dao-interface", "name": "ghost-dao-interface",
"private": true, "private": true,
"version": "0.7.48", "version": "0.7.49",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -111,8 +111,6 @@ function App() {
const { connect, error: errorMessage } = useConnect(); const { connect, error: errorMessage } = useConnect();
const tryConnectInjected = () => connect({ connector: injected() }); const tryConnectInjected = () => connect({ connector: injected() });
const bondIndexes = [];
const [wrongNetworkToastId, setWrongNetworkToastId] = useState(null); const [wrongNetworkToastId, setWrongNetworkToastId] = useState(null);
const [isSidebarExpanded, setIsSidebarExpanded] = useState(false); const [isSidebarExpanded, setIsSidebarExpanded] = useState(false);
const [mobileOpen, setMobileOpen] = useState(false); const [mobileOpen, setMobileOpen] = useState(false);

View File

@ -302,7 +302,7 @@ export const wrap = async (chainId, account, amount, ghstSymbol) => {
} }
export const ghost = async (chainId, account, receiver, amount) => { export const ghost = async (chainId, account, receiver, amount) => {
const ars = [receiver, amount]; const args = [receiver, amount];
const messages = { const messages = {
replacedMsg: "Bridge transaction was replaced. Wait for inclusion please.", replacedMsg: "Bridge transaction was replaced. Wait for inclusion please.",
successMsg: `Amount successfully bridged! Check tx hash status or wait for slow clap finalization.`, successMsg: `Amount successfully bridged! Check tx hash status or wait for slow clap finalization.`,